public UserController(IUserService userService, ICodeService codeService, IUserAndRuleService userAndRuleService, IRuleService ruleService, IProjectService projectService)
 {
     _userService        = userService;
     _codeService        = codeService;
     _userAndRuleService = userAndRuleService;
     _ruleService        = ruleService;
     _projectService     = projectService;
 }
Exemple #2
0
 public UserController(IUserService userService, ICodeService codeService, IUserAndRuleService userAndRuleService, IRuleService ruleService, IProjectService projectService)
 {
     _userService = userService;
     _codeService = codeService;
     _userAndRuleService = userAndRuleService;
     _ruleService = ruleService;
     _projectService = projectService;
 }
 public LoginController(IUserService userService, IUserAndRuleService userAndRuleService)
 {
     _userService        = userService;
     _userAndRuleService = userAndRuleService;
 }
Exemple #4
0
 public LoginController(IUserService userService, IUserAndRuleService userAndRuleService)
 {
     _userService = userService;
     _userAndRuleService = userAndRuleService;
 }