Esempio n. 1
0
 public SafeDSL(
     ISafeDAL safeDAL,
     IFarmAccountDSL farmAccountDSL,
     IDriverAccountDSL driverAccountDSL,
     ISelectorAccountDSL selectorAccountDSL,
     IReaperAccountDSL reaperAccountDSL,
     IStationAccountDSL stationAccountDSL,
     IMapper mapper)
 {
     _safeDAL            = safeDAL;
     _farmAccountDSL     = farmAccountDSL;
     _driverAccountDSL   = driverAccountDSL;
     _reaperAccountDSL   = reaperAccountDSL;
     _selectorAccountDSL = selectorAccountDSL;
     _stationAccountDSL  = stationAccountDSL;
     _mapper             = mapper;
 }
 public ReaperAccountController(IReaperAccountDSL reaperAccountDSL)
 {
     this._reaperAccountDSL = reaperAccountDSL;
 }