Ejemplo n.º 1
0
 public TouristReportLogic(ITravelStorage travelStorage, IExcursionStorage excursionStorage, IGuideStorage guideStorage, IReportStorage reportStorage)
 {
     this.travelStorage    = travelStorage;
     this.excursionStorage = excursionStorage;
     this.guideStorage     = guideStorage;
     this.reportStorage    = reportStorage;
 }
Ejemplo n.º 2
0
 public OperatorReportLogic(IGuideStorage guideStorage, IExcursionStorage excursionStorage, ITourStorage tourStorage, ITravelStorage travelStorage, IReportStorage reportStorage)
 {
     _guideStorage      = guideStorage;
     _excursionStorage  = excursionStorage;
     _tourStorage       = tourStorage;
     _travelStorage     = travelStorage;
     this.reportStorage = reportStorage;
 }
Ejemplo n.º 3
0
 public TouristStatisticsLogic(ITravelStorage travelStorage, ITourStorage tourStorage)
 {
     this.travelStorage = travelStorage;
     this.tourStorage   = tourStorage;
 }
Ejemplo n.º 4
0
 public TravelLogic(ITravelStorage travelStorage)
 {
     _travelStorage = travelStorage;
 }