Пример #1
0
 public AntibiotrendService(AntibiotrendContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
Пример #2
0
 public AntibiotrendController(AntibiotrendContext db, IMapper mapper, IWebHostEnvironment host)
 {
     _service = new AntibiotrendService(db, mapper);
     _host    = host;
 }