public HistoryService(
     CteHistoryDbContext context,
     IMapper mapper
     ) : base(context, mapper)
 {
 }
Пример #2
0
 protected BaseService(CteHistoryDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public DocumentsService(
     CteHistoryDbContext context,
     IMapper mapper
     ) : base(context, mapper)
 {
 }