Beispiel #1
0
 public UserController(ISys_UserService userService,
                       ISys_DepartmentService departmentService,
                       ISys_UserDepartmentService userDepartmentService)
 {
     _userService           = userService;
     _departmentService     = departmentService;
     _userDepartmentService = userDepartmentService;
 }
Beispiel #2
0
 public DepartmentController(ISys_DepartmentService departmentService)
 {
     _departmentService = departmentService;
 }