public IHttpActionResult UpdateBranchLicense(BranchLicenseViewModel model)
 {
     _adminService.UpdateBranchLicense(model.ToServiceRequestModel());
     return(Ok());
 }
Exemplo n.º 2
0
        public async Task <IHttpActionResult> BranchLicenseUpdate(BranchLicenseViewModel model)
        {
            await WebApiService.Instance.PostAsync("admin/branchlicense/update", model);

            return(Ok());
        }