Пример #1
0
 public MembershipController(IRoleServiceExtended roleServiceExtended, IUserServiceExtended userService)
 {
     _roleServiceExtended = roleServiceExtended;
     _userService = userService;
 }
Пример #2
0
 public RoleController(IRoleServiceExtended roleServiceExtended)
 {
     _roleServiceExtended = roleServiceExtended;
 }
Пример #3
0
 public DashboardController(IRoleServiceExtended roleServiceExtended, IUserService userService)
 {
     _roleServiceExtended = roleServiceExtended;
     _userService = userService;
 }