Beispiel #1
0
        public MainController()
        {
            confirmService = new UserConfirmService();
            userService    = new UserService();
            loginService   = new LoginService();
            friendService  = new FriendService();
            inviteService  = new InviteService();

            HidePermission(typeof(SecurityController));
        }
Beispiel #2
0
        public RegisterController()
        {
            userService    = new UserService();
            confirmService = new UserConfirmService();
            confirmEmail   = new ConfirmEmail();
            loginService   = new LoginService();

            appService  = new UserAppService();
            menuService = new UserMenuService();

            inviteService = new InviteService();

            HidePermission(typeof(SecurityController));
        }
 public EmailConfirmController()
 {
     userService    = new UserService();
     confirmService = new UserConfirmService();
     confirmEmail   = new ConfirmEmail();
 }
Beispiel #4
0
 public ConfirmEmail()
 {
     confirmService = new UserConfirmService();
     userService    = new UserService();
 }