public IHttpActionResult AddBranchLicense(BranchLicenseViewModel model)
 {
     _adminService.AddBranchLicense(model.ToServiceRequestModel());
     return(Ok());
 }