Skip to content

Instantly share code, notes, and snippets.

@krishna-acondy
Created February 11, 2018 20:08
Show Gist options
  • Save krishna-acondy/129acc919f3f69e224acda5c53f09d29 to your computer and use it in GitHub Desktop.
Save krishna-acondy/129acc919f3f69e224acda5c53f09d29 to your computer and use it in GitHub Desktop.
Generic Pizza Service
export class PizzaService extends ResourceService<Pizza> {
constructor(httpClient: HttpClient) {
super(
httpClient,
'http://pizzaService',
'pizzas',
new PizzaSerializer());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment