public TouristReportLogic(ITravelStorage travelStorage, IExcursionStorage excursionStorage, IGuideStorage guideStorage, IReportStorage reportStorage)
 {
     this.travelStorage    = travelStorage;
     this.excursionStorage = excursionStorage;
     this.guideStorage     = guideStorage;
     this.reportStorage    = reportStorage;
 }
Example #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;
 }
Example #3
0
 public ExcursionLogic(IExcursionStorage excursionStorage)
 {
     _excursionStorage = excursionStorage;
 }