Ejemplo n.º 1
0
 public CourseService(ICourseArchivesService courseArchiveService, QueryExecutor queryExecutor, IMapper autoMapper, ModelMapper modelMapper, SqlCommands sqlCommands, HttpClientService httpClientService, IHttpContextAccessor httpContextAccessor)
 {
     this._autoMapper           = autoMapper;
     this._queryExecutor        = queryExecutor;
     this._sqlCommands          = sqlCommands;
     this._modelMapper          = modelMapper;
     this._httpClientService    = httpClientService;
     this._httpContextAccessor  = httpContextAccessor;
     this._courseArchiveService = courseArchiveService;
 }
 public CourseArchivesController(ICourseArchivesService courseArchivesService)
 {
     this._courseArchivesService = courseArchivesService;
 }