Created
May 25, 2018 14:17
-
-
Save buildmotion/a5aaf5e9b417f1c86562d15af24b570c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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