Skip to content

Instantly share code, notes, and snippets.

@buildmotion
Created May 25, 2018 14:17
Show Gist options
  • Save buildmotion/a5aaf5e9b417f1c86562d15af24b570c to your computer and use it in GitHub Desktop.
Save buildmotion/a5aaf5e9b417f1c86562d15af24b570c to your computer and use it in GitHub Desktop.
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class LibTwoService {
serviceName = 'LibTwoService';
constructor() { }
SayHello(message: string): string {
return `${message} from ${this.serviceName}`;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment