Exemplo n.º 1
0
 public HomeController(ICurrentUserProxy currentUserProxy,
     IUsersService usersService, IConstantsProvider constantsProvider)
     : base(currentUserProxy)
 {
     UsersService = usersService;
     ConstantsProvider = constantsProvider;
 }
Exemplo n.º 2
0
 public AuthenticationController(ICurrentUserProxy currentUserProxy, 
     IAuthenticationService authenticationService, IUsersService usersService,
     IConstantsProvider constantsProvider)
     : base(currentUserProxy)
 {
     AuthenticationService = authenticationService;
     UsersService = usersService;
     ConstantsProvider = constantsProvider;
 }
Exemplo n.º 3
0
 public TeacherController(ICurrentUserProxy currentUserProxy)
     : base(currentUserProxy)
 {
 }