public HomeController(IUserService userserService, ICityService cityMasterService,
                       IRoleMasterService roleMasterService, ICompanyMasterService companyMasterService)
 {
     _companyMasterService = companyMasterService;
     _roleMasterService    = roleMasterService;
     _cityMasterService    = cityMasterService;
     _userserService       = userserService;
 }
 public UserController(IUserService userService, ICityService cityMasterService,
                       IRoleMasterService roleMasterService, ICompanyMasterService companyMasterService, IUserInRoleService userInRoleService)
 {
     _userInRoleService    = userInRoleService;
     _companyMasterService = companyMasterService;
     _roleMasterService    = roleMasterService;
     _cityMasterService    = cityMasterService;
     _userService          = userService;
 }