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

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