예제 #1
0
        protected BaseController(IHttpRequest request)
        {
            this.Request        = request;
            this.Authentication = new Authentication(false, false);

            this.users = new UserServise();

            this.ApplyAuthentication();
        }
 public FilesController(IFileService fileService, IUserServise userService)
 {
     this.fileService = fileService;
     this.userService = userService;
 }
예제 #3
0
 public UserController(IUserServise servise)
 {
     _servise = servise;
 }
예제 #4
0
 public UserController(IUserServise userServise)
 {
     _userService = userServise;
 }
예제 #5
0
 public UserController(IUserServise servise, IRoleService roleService)
 {
     this.userService = servise;
     this.roleService = roleService;
 }
 public AccountController(IUserServise servise)
 {
     this.servise = servise;
 }
예제 #7
0
 public SmsAuthCodeValidator(IAuthService authService, IUserServise userServise)
 {
     _authService = authService;
     _userServise = userServise;
 }
예제 #8
0
 public AccountController(IHttpRequest request)
     : base(request)
 {
     this.users = new UserServise();
 }