public IHttpActionResult UpdateBranchStorage(DocumentStorageViewModel model) { _adminService.UpdateBranchStorage(model.ToServiceRequestModel()); return(Ok()); }
public async Task <IHttpActionResult> BranchStorageUpdate(DocumentStorageViewModel model) { await WebApiService.Instance.PostAsync("admin/branchstorage/update", model); return(Ok()); }