Skip to content

Instantly share code, notes, and snippets.

@tomastrajan
Created May 1, 2017 09:59
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 tomastrajan/726ba5ca301c4de0df757acec34dacd4 to your computer and use it in GitHub Desktop.
Save tomastrajan/726ba5ca301c4de0df757acec34dacd4 to your computer and use it in GitHub Desktop.
Angular Model Pattern - component service call
export class TodosComponent {
/* ... */
onTodoToggleClick(todo: Todo) {
this.todosService.toggleTodo(todo.name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment