Commit de2e521d by kantavee

no message

parent 3c586cad
......@@ -14,6 +14,9 @@ export class Bu2Service {
getList(): Observable<Bu2Model[]> {
return this.http.get<Bu2Model[]>(this.urlApi + "/lists")
}
getById(bu2id:string): Observable<Bu2Model> {
return this.http.get<Bu2Model>(this.urlApi + "/"+bu2id)
}
// post(body: Bu1Model) {
// return this.http.post(this.urlApi, body)
// }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment