Skip to content

Instantly share code, notes, and snippets.

@ypcode
Created July 29, 2018 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ypcode/b2dff097c73d0a4220e6f8db04f58979 to your computer and use it in GitHub Desktop.
Save ypcode/b2dff097c73d0a4220e6f8db04f58979 to your computer and use it in GitHub Desktop.
import {GreetingsServiceKey} from "../services/GreetingsService";
// ...
public Greet() {
let service = this.serviceScope.consume(GreetingsServiceKey);
let message = service.sayHello("Yannick");
console.log(message);
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment