Пример #1
0
 public HomeController(IStationDtoAccessLayer stationDtoAcessLayer, IOptions <MainSetting> settingsOptions, IMapper mapper)
 {
     _stationDtoAcessLayer = stationDtoAcessLayer;
     _settingsOptions      = settingsOptions.Value;
     _mapper = mapper;
 }
Пример #2
0
 public StationsController(IStationDtoAccessLayer stationDtoAcessLayer, IMapper mapper)
 {
     _stationDtoAcessLayer = stationDtoAcessLayer;
     _mapper = mapper;
 }