コード例 #1
0
 public TouristReportLogic(ITravelStorage travelStorage, IExcursionStorage excursionStorage, IGuideStorage guideStorage, IReportStorage reportStorage)
 {
     this.travelStorage    = travelStorage;
     this.excursionStorage = excursionStorage;
     this.guideStorage     = guideStorage;
     this.reportStorage    = reportStorage;
 }
コード例 #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;
 }
コード例 #3
0
ファイル: GuideLogic.cs プロジェクト: Quenby-apr/TP-TourFirm
 public GuideLogic(IGuideStorage guideStorage)
 {
     _guideStorage = guideStorage;
 }