Пример #1
0
 public UserController(IUserService userService, ICityService cityMasterService,
                       IRoleMasterService roleMasterService, ICompanyMasterService companyMasterService, IUserInRoleService userInRoleService)
 {
     _userInRoleService    = userInRoleService;
     _companyMasterService = companyMasterService;
     _roleMasterService    = roleMasterService;
     _cityMasterService    = cityMasterService;
     _userService          = userService;
 }
Пример #2
0
 public UserInRoleController(IUserInRoleService userInRoleBusiness)
 {
     _userInRoleSrv = userInRoleBusiness;
 }
 public RoleController(IRoleService roleService, IUserInRoleService userInRoleService)
 {
     _roleService       = roleService;
     _userInRoleService = userInRoleService;
 }