예제 #1
0
 public AdminDocumentTemplatesController(
     IOptions <IntranetOptions> optionsAccessor,
     IIntranetCacheService cache,
     IIntranetUnitOfWork uow) : base(uow)
 {
     _options = optionsAccessor.Value;
     _cache   = cache;
 }
예제 #2
0
 public AdminEmployeesController(
     IOptions <IntranetOptions> optionsAccessor,
     IHostingEnvironment environment,
     IIntranetCacheService cache,
     IIntranetUnitOfWork uow) : base(uow)
 {
     _options     = optionsAccessor.Value;
     _environment = environment;
     _cache       = cache;
 }
예제 #3
0
 public AdminProductsController(
     IIntranetCacheService cache,
     IIntranetUnitOfWork uow) : base(uow)
 {
     _cache = cache;
 }
예제 #4
0
 public DocumentsController(
     IIntranetCacheService cache,
     IIntranetUnitOfWork uow) : base(uow)
 {
     _cache = cache;
 }
예제 #5
0
 public EmployeesController(
     IIntranetCacheService cache,
     IIntranetUnitOfWork uow) : base(uow)
 {
     _cache = cache;
 }