예제 #1
0
 public BaseController(IAuthecantion authecantion)
 {
     auth = authecantion;
 }
예제 #2
0
        //----------------------------------------------------------------//

        public UsersController(IRepository repository, IAuthecantion authecantionRepository)
            : base(authecantionRepository)
        {
            this.repository = repository;
        }
예제 #3
0
 public AuthorizeController(IRepository repository, IAuthecantion authecantion)
     : base(authecantion)
 {
     repositoryAuth = repository;
 }
예제 #4
0
 public HomeController(IRepository repository, IAuthecantion authecantion)
     : base(authecantion)
 {
     this.repository = repository;
 }