Пример #1
0
 public SectionService(HttpClientService httpClientService, QueryExecutor queryExecutor, ModelMapper modelMapper, IMapper autoMapper, SqlCommands sqlCommands, ISectionArchiveService archiveService, IHttpContextAccessor httpContextAccessor)
 {
     this._queryExecutor       = queryExecutor;
     this._modelMapper         = modelMapper;
     this._autoMapper          = autoMapper;
     this._sqlCommands         = sqlCommands;
     this._archiveService      = archiveService;
     this._httpContextAccessor = httpContextAccessor;
     this._httpClientService   = httpClientService;
 }
 public SectionArchiveController(ISectionArchiveService sectionArchiveService)
 {
     _sectionArchiveService = sectionArchiveService;
 }