public IHttpActionResult UpdateBranchStorageLocation(DocumentStorageLocationViewModel model)
 {
     _adminService.UpdateBranchStorageLocation(model.ToServiceRequestModel());
     return(Ok());
 }
Example #2
0
        public async Task <IHttpActionResult> BranchStorageLocationUpdate(DocumentStorageLocationViewModel model)
        {
            await WebApiService.Instance.PostAsync("admin/branchstoragelocation/update", model);

            return(Ok());
        }