Ejemplo n.º 1
0
 public AdminDocumentTemplatesController(
     IOptions <IntranetOptions> optionsAccessor,
     IIntranetCacheService cache,
     IIntranetUnitOfWork uow) : base(uow)
 {
     _options = optionsAccessor.Value;
     _cache   = cache;
 }
Ejemplo n.º 2
0
 public AdminEmployeesController(
     IOptions <IntranetOptions> optionsAccessor,
     IHostingEnvironment environment,
     IIntranetCacheService cache,
     IIntranetUnitOfWork uow) : base(uow)
 {
     _options     = optionsAccessor.Value;
     _environment = environment;
     _cache       = cache;
 }