public async Task<HttpResponseMessage> Update(Staff obj) { var response = await _client.PutData(Constants.Staff.ALL + obj.id, obj); return response; }
public async Task<HttpResponseMessage> Update(Staff obj) { throw new NotImplementedException("Updating Staff is not allowed"); }
public async Task<HttpResponseMessage> Create(Staff obj) { var response = await _client.PostData(Constants.Staff.ALL, obj); return response; }