Exemple #1
0
 public StationDSL(IStationDAL stationDAL, IMapper mapper)
 {
     this._stationDAL = stationDAL;
     _mapper          = mapper;
 }
Exemple #2
0
 public StationService(IStationDAL stationDAL)
 {
     _stationDAL = stationDAL;
 }
Exemple #3
0
 public StationDSL(IStationDAL stationDAL, IAccountingSharedDSL accountingSharedDSL, IMapper mapper)
 {
     _stationDAL          = stationDAL;
     _accountingSharedDSL = accountingSharedDSL;
     _mapper = mapper;
 }