public TouristReportLogic(ITravelStorage travelStorage, IExcursionStorage excursionStorage, IGuideStorage guideStorage, IReportStorage reportStorage)
 {
     this.travelStorage    = travelStorage;
     this.excursionStorage = excursionStorage;
     this.guideStorage     = guideStorage;
     this.reportStorage    = reportStorage;
 }
Esempio 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;
 }
Esempio n. 3
0
 public GuideLogic(IGuideStorage guideStorage)
 {
     _guideStorage = guideStorage;
 }