public IHttpActionResult RackNoBranchStorage(RackNoViewModel model)
 {
     _adminService.RackNoBranchStorage(model.ToServiceRequestModel());
     return(Ok());
 }
Beispiel #2
0
        public async Task <IHttpActionResult> BranchStorageRackNoUpdate(RackNoViewModel model)
        {
            await WebApiService.Instance.PostAsync("admin/branchstorage/rackNo", model);

            return(Ok());
        }