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

            HidePermission( typeof( SecurityController ) );
        }
        public WeiboRegisterController()
        {
            userService = new UserService();
            confirmService = new UserConfirmService();
            inviteService = new InviteService();
            loginService = new LoginService();
            friendService = new FriendService();

            appService = new UserAppService();
            menuService = new UserMenuService();
        }
Exemple #3
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 ActivationController()
 {
     userService = new UserService();
     confirmEmail = new ConfirmEmail();
     confirmService = new UserConfirmService();
 }
Exemple #5
0
 public ConfirmEmail()
 {
     confirmService = new UserConfirmService();
     userService = new UserService();
 }
 public EmailConfirmController()
 {
     userService = new UserService();
     confirmService = new UserConfirmService();
     confirmEmail = new ConfirmEmail();
 }