Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Last active February 8, 2020 17:39
Show Gist options
  • Save andrewarosario/998a4e579c5f380158e178eccefe1765 to your computer and use it in GitHub Desktop.
Save andrewarosario/998a4e579c5f380158e178eccefe1765 to your computer and use it in GitHub Desktop.
@Injectable()
export class CashflowCategoryApi {
readonly API = '/api/cashflowCategories';
constructor(private http: HttpClient) {}
getCashflowCategories(): Observable<CashflowCategory[]> {
return this.http.get<CashflowCategory[]>(this.API);
}
createCashflowCategory(category: CashflowCategory): Observable<any> {
return this.http.post(this.API, category);
}
updateCashflowCategory(category: CashflowCategory): Observable<any> {
return this.http.put(`${this.API}/${category.id}`, category);
}
removeCashflowCategory(category: CashflowCategory): Observable<any> {
return this.http.delete(`${this.API}/${category.id}`);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment