public MembershipController(IRoleServiceExtended roleServiceExtended, IUserServiceExtended userService)
 {
     _roleServiceExtended = roleServiceExtended;
     _userService = userService;
 }
Esempio n. 2
0
 public RoleController(IRoleServiceExtended roleServiceExtended)
 {
     _roleServiceExtended = roleServiceExtended;
 }
 public DashboardController(IRoleServiceExtended roleServiceExtended, IUserService userService)
 {
     _roleServiceExtended = roleServiceExtended;
     _userService = userService;
 }