public async Task <Busyo> DeleteBusyoAsync(int Id) { IRestService rest = new RestService(); Busyo deletedbusyo = await rest.DeleteBusyoAsync(Id); return(deletedbusyo); }
public async Task <Busyo> PutBusyoAsync(Busyo busyo) { IRestService rest = new RestService(); Busyo updatedBusyo = await rest.PutBusyoAsync(busyo); return(updatedBusyo); }
public async Task <Busyo> PostBusyoAsync(Busyo busyo) { IRestService rest = new RestService(); Busyo createdbusyo = await rest.PostBusyoAsync(busyo); return(createdbusyo); }