public StationDSL(IStationDAL stationDAL, IMapper mapper) { this._stationDAL = stationDAL; _mapper = mapper; }
public StationService(IStationDAL stationDAL) { _stationDAL = stationDAL; }
public StationDSL(IStationDAL stationDAL, IAccountingSharedDSL accountingSharedDSL, IMapper mapper) { _stationDAL = stationDAL; _accountingSharedDSL = accountingSharedDSL; _mapper = mapper; }