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