Ejemplo n.º 1
0
 public SubjectService(QueryExecutor queryExecutor, ModelMapper modelMapper, SqlCommands sqlCommands, IMapper autoMapper, HttpClientService httpClientService, IHttpContextAccessor httpContextAccessor, ISubjectArchiveService subjectArchiveService)
 {
     this._queryExecutor         = queryExecutor;
     this._modelMapper           = modelMapper;
     this._sqlCommands           = sqlCommands;
     this._autoMapper            = autoMapper;
     this._httpClientService     = httpClientService;
     this._httpContextAccessor   = httpContextAccessor;
     this._subjectArchiveService = subjectArchiveService;
 }
Ejemplo n.º 2
0
 public SubjectArchiveController(ISubjectArchiveService subjectArchiveService)
 {
     _subjectArchiveService = subjectArchiveService;
 }