コード例 #1
0
ファイル: TourService.cs プロジェクト: TanNguyenNet/GTrip
 public TourService(IUnitOfWork unitOfWork
                    , ITourRepository tourRepo
                    , ITourAttributeValueRepository tourAttributeValueRepository
                    , ITourAttributeRepository tourAttributeRepository
                    , ICountryRegionRepository countryRegionRepository
                    , IStateProvinceRepository stateProvinceRepository) : base(unitOfWork, tourRepo)
 {
     _tourRepo = tourRepo;
     _tourAttributeRepository      = tourAttributeRepository;
     _tourAttributeValueRepository = tourAttributeValueRepository;
     _countryRegionRepository      = countryRegionRepository;
     _stateProvinceRepository      = stateProvinceRepository;
 }
コード例 #2
0
 public TourAttributeService(IUnitOfWork unitOfWork, ITourAttributeRepository tourAttributeRepo) : base(unitOfWork, tourAttributeRepo)
 {
     _tourAttributeRepo = tourAttributeRepo;
 }