public IHttpActionResult UpdateBranchTenancy(BranchTenancyViewModel model)
 {
     _adminService.UpdateBranchTenancy(model.ToServiceRequestModel());
     return(Ok());
 }
Esempio n. 2
0
        public async Task <IHttpActionResult> BranchTenancyUpdate(BranchTenancyViewModel model)
        {
            await WebApiService.Instance.PostAsync("admin/branchtenancy/update", model);

            return(Ok());
        }