Skip to content

Instantly share code, notes, and snippets.

@icfantv
Created March 3, 2016 18:13
Show Gist options
  • Save icfantv/085b9599825002bab382 to your computer and use it in GitHub Desktop.
Save icfantv/085b9599825002bab382 to your computer and use it in GitHub Desktop.
export class ExampleService {
static get $inject() {
return ['$http'];
}
constructor($http) {
this.$http = $http;
}
getAll() {
return $http.get('ws/examples');
}
get(id) {
return $http.get(`ws/examples/${id}`);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment