コード例 #1
0
 public TourDetailController(iPow.Infrastructure.Crosscutting.NetFramework.IWorkContext work,
                             iPow.Domain.Repository.ITourClassRepository tourClass,
                             iPow.Domain.Repository.ITourPlanDetailRepository tourPlanDetail,
                             iPow.Domain.Repository.ITourPlanRepository tourPlan,
                             iPow.Domain.Repository.ISightInfoRepository sightInfo,
                             iPow.Domain.Repository.IHotelPropertyInfoRepository hotelPropertyInfo)
     : base(work)
 {
     if (tourClass == null)
     {
         throw new ArgumentNullException("tourClassRepository is null");
     }
     if (tourPlanDetail == null)
     {
         throw new ArgumentNullException("tourPlanDetailRepository is null");
     }
     if (tourPlan == null)
     {
         throw new ArgumentNullException("tourPlanRepository is null");
     }
     if (sightInfo == null)
     {
         throw new ArgumentNullException("sightInfoRepository is null");
     }
     if (hotelPropertyInfo == null)
     {
         throw new ArgumentNullException("hotelPropertyInfoRepository is null");
     }
     tourClassRepository         = tourClass;
     tourPlanDetailRepository    = tourPlanDetail;
     tourPlanRepository          = tourPlan;
     sightInfoRepository         = sightInfo;
     hotelPropertyInfoRepository = hotelPropertyInfo;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LinksAndTopCountService"/> class.
 /// </summary>
 public LinksAndTopCountService(iPow.Domain.Repository.ILinkInfoRepository linkInfo,
       iPow.Domain.Repository.ISightInfoRepository sightInfo,
       iPow.Domain.Repository.ITourPlanRepository tourPlan,
       iPow.Domain.Repository.IHotelPropertyInfoRepository hotelPropertyInfo
     )
 {
     if (linkInfo == null)
     {
         throw new ArgumentNullException("linkInfoRepository is null");
     }
     if (sightInfo == null)
     {
         throw new ArgumentNullException("sightInfoRepository is null");
     }
     if (tourPlan == null)
     {
         throw new ArgumentNullException("tourPlanRepository is null");
     }
     if (hotelPropertyInfo == null)
     {
         throw new ArgumentNullException("hotelPropertyInfoRepository is null");
     }
     linkInfoRepository = linkInfo;
     sightInfoRepository = sightInfo;
     tourPlanRepository = tourPlan;
     hotelPropertyInfoRepository = hotelPropertyInfo;
 }
コード例 #3
0
 public TourDetailController(iPow.Infrastructure.Crosscutting.NetFramework.IWorkContext work,
     iPow.Domain.Repository.ITourClassRepository tourClass,
     iPow.Domain.Repository.ITourPlanDetailRepository tourPlanDetail,
     iPow.Domain.Repository.ITourPlanRepository tourPlan,
     iPow.Domain.Repository.ISightInfoRepository sightInfo,
     iPow.Domain.Repository.IHotelPropertyInfoRepository hotelPropertyInfo)
     : base(work)
 {
     if (tourClass == null)
     {
         throw new ArgumentNullException("tourClassRepository is null");
     }
     if (tourPlanDetail == null)
     {
         throw new ArgumentNullException("tourPlanDetailRepository is null");
     }
     if (tourPlan == null)
     {
         throw new ArgumentNullException("tourPlanRepository is null");
     }
     if (sightInfo == null)
     {
         throw new ArgumentNullException("sightInfoRepository is null");
     }
     if (hotelPropertyInfo == null)
     {
         throw new ArgumentNullException("hotelPropertyInfoRepository is null");
     }
     tourClassRepository = tourClass;
     tourPlanDetailRepository = tourPlanDetail;
     tourPlanRepository = tourPlan;
     sightInfoRepository = sightInfo;
     hotelPropertyInfoRepository = hotelPropertyInfo;
 }
コード例 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LinksAndTopCountService"/> class.
 /// </summary>
 public LinksAndTopCountService(iPow.Domain.Repository.ILinkInfoRepository linkInfo,
                                iPow.Domain.Repository.ISightInfoRepository sightInfo,
                                iPow.Domain.Repository.ITourPlanRepository tourPlan,
                                iPow.Domain.Repository.IHotelPropertyInfoRepository hotelPropertyInfo
                                )
 {
     if (linkInfo == null)
     {
         throw new ArgumentNullException("linkInfoRepository is null");
     }
     if (sightInfo == null)
     {
         throw new ArgumentNullException("sightInfoRepository is null");
     }
     if (tourPlan == null)
     {
         throw new ArgumentNullException("tourPlanRepository is null");
     }
     if (hotelPropertyInfo == null)
     {
         throw new ArgumentNullException("hotelPropertyInfoRepository is null");
     }
     linkInfoRepository          = linkInfo;
     sightInfoRepository         = sightInfo;
     tourPlanRepository          = tourPlan;
     hotelPropertyInfoRepository = hotelPropertyInfo;
 }
コード例 #5
0
ファイル: TourPlanService.cs プロジェクト: JPomichael/IPOW
 public TourPlanService(iPow.Domain.Repository.ITourPlanRepository tourPlan)
 {
     if (tourPlan == null)
     {
         throw new ArgumentNullException(" tourPlanRepository   is null");
     }
     tourPlanRepository = tourPlan;
 }
コード例 #6
0
ファイル: TourPlanService.cs プロジェクト: JPomichael/IPOW
 public TourPlanService( iPow.Domain.Repository.ITourPlanRepository tourPlan)
 {
     if (tourPlan == null)
         {
             throw new ArgumentNullException(" tourPlanRepository   is null");
         }
         tourPlanRepository = tourPlan;
 }
コード例 #7
0
ファイル: TourController.cs プロジェクト: JPomichael/IPOW
 public TourController(iPow.Infrastructure.Crosscutting.NetFramework.IWorkContext work,
                       iPow.Application.dj.Service.ITourPlanService ipowTourPlanService,
                       iPow.Domain.Repository.ITourPlanRepository tourPlan)
     : base(work)
 {
     if (ipowTourPlanService == null)
     {
         throw new ArgumentNullException("tourPlanService is null");
     }
     if (tourPlan == null)
     {
         throw new ArgumentNullException("tourPlanRepository is null");
     }
     tourPlanService    = ipowTourPlanService;
     tourPlanRepository = tourPlan;
 }
コード例 #8
0
ファイル: SearchService.cs プロジェクト: JPomichael/IPOW
 /// <summary>
 /// Initializes a new instance of the <see cref="SearchService"/> class.
 /// </summary>
 /// <param name="hotelPropertyInfo">The hotel property info.</param>
 /// <param name="tourPlan">The tour plan.</param>
 /// <param name="tourPlanDetail">The tour plan detail.</param>
 public SearchService(iPow.Domain.Repository.IHotelPropertyInfoRepository hotelPropertyInfo,
        iPow.Domain.Repository.ITourPlanRepository tourPlan,
        iPow.Domain.Repository.ITourPlanDetailRepository tourPlanDetail)
 {
     if (hotelPropertyInfo == null)
     {
         throw new ArgumentNullException("hotelpropertyinforepository is null");
     }
     if (tourPlan == null)
     {
         throw new ArgumentNullException("tourPlanRepository is null");
     }
     if (tourPlanDetail == null)
     {
         throw new ArgumentNullException("tourPlanDetailRepository is null");
     }
     hotelPropertyInfoRepository = hotelPropertyInfo;
     tourPlanRepository = tourPlan;
     tourPlanDetailRepository = tourPlanDetail;
 }
コード例 #9
0
ファイル: SearchService.cs プロジェクト: JPomichael/IPOW
 /// <summary>
 /// Initializes a new instance of the <see cref="SearchService"/> class.
 /// </summary>
 /// <param name="hotelPropertyInfo">The hotel property info.</param>
 /// <param name="tourPlan">The tour plan.</param>
 /// <param name="tourPlanDetail">The tour plan detail.</param>
 public SearchService(iPow.Domain.Repository.IHotelPropertyInfoRepository hotelPropertyInfo,
                      iPow.Domain.Repository.ITourPlanRepository tourPlan,
                      iPow.Domain.Repository.ITourPlanDetailRepository tourPlanDetail)
 {
     if (hotelPropertyInfo == null)
     {
         throw new ArgumentNullException("hotelpropertyinforepository is null");
     }
     if (tourPlan == null)
     {
         throw new ArgumentNullException("tourPlanRepository is null");
     }
     if (tourPlanDetail == null)
     {
         throw new ArgumentNullException("tourPlanDetailRepository is null");
     }
     hotelPropertyInfoRepository = hotelPropertyInfo;
     tourPlanRepository          = tourPlan;
     tourPlanDetailRepository    = tourPlanDetail;
 }
コード例 #10
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ListService"/> class.
 /// </summary>
 /// <param name="sightInfo">The sight info.</param>
 /// <param name="tourPlan">The tour plan.</param>
 /// <param name="tourPlanDetail">The tour plan detail.</param>
 public ListService(iPow.Domain.Repository.ISightInfoRepository sightInfo,
                    iPow.Domain.Repository.ITourPlanRepository tourPlan,
                    iPow.Domain.Repository.ITourPlanDetailRepository tourPlanDetail
                    )
 {
     if (sightInfo == null)
     {
         throw new ArgumentNullException("sightInfoRepository is null");
     }
     if (tourPlan == null)
     {
         throw new ArgumentNullException("tourPlanRepository is null");
     }
     if (tourPlanDetail == null)
     {
         throw new ArgumentNullException("tourPlanDetailRepository is null");
     }
     sightInfoRepository      = sightInfo;
     tourPlanRepository       = tourPlan;
     tourPlanDetailRepository = tourPlanDetail;
 }
コード例 #11
0
ファイル: TourController.cs プロジェクト: JPomichael/IPOW
 public TourController(iPow.Infrastructure.Crosscutting.NetFramework.IWorkContext work,
     iPow.Domain.Repository.ITourClassRepository tourClass,
     iPow.Domain.Repository.ITourPlanDetailRepository tourPlanDetail,
     iPow.Domain.Repository.ITourPlanRepository tourPlan)
     : base(work)
 {
     if (tourClass == null)
     {
         throw new ArgumentNullException("tourClassRepository is null");
     }
     if (tourPlanDetail == null)
     {
         throw new ArgumentNullException("tourPlanDetailRepository is null");
     }
     if (tourPlan == null)
     {
         throw new ArgumentNullException("tourPlanRepository is null");
     }
     tourClassRepository = tourClass;
     tourPlanDetailRepository = tourPlanDetail;
     tourPlanRepository = tourPlan;
 }
コード例 #12
0
 public TourController(iPow.Infrastructure.Crosscutting.NetFramework.IWorkContext work,
                       iPow.Domain.Repository.ITourClassRepository tourClass,
                       iPow.Domain.Repository.ITourPlanDetailRepository tourPlanDetail,
                       iPow.Domain.Repository.ITourPlanRepository tourPlan)
     : base(work)
 {
     if (tourClass == null)
     {
         throw new ArgumentNullException("tourClassRepository is null");
     }
     if (tourPlanDetail == null)
     {
         throw new ArgumentNullException("tourPlanDetailRepository is null");
     }
     if (tourPlan == null)
     {
         throw new ArgumentNullException("tourPlanRepository is null");
     }
     tourClassRepository      = tourClass;
     tourPlanDetailRepository = tourPlanDetail;
     tourPlanRepository       = tourPlan;
 }
コード例 #13
0
ファイル: TourPlanService.cs プロジェクト: JPomichael/IPOW
        /// <summary>
        /// Initializes a new instance of the <see cref="TourPlanService"/> class.
        /// </summary>
        /// <param name="tourPlan">The tour plan.</param>
        /// <param name="tourPlanDetail">The tour plan detail.</param>
        /// <param name="tourClass">The tour class.</param>
        /// <param name="sightInfo">The sight info.</param>
        /// <param name="sightClass">The sight class.</param>
        /// <param name="hotelComm">The hotel comm.</param>
        /// <param name="hotelPropertyInfo">The hotel property info.</param>
        /// <param name="hotelPic">The hotel pic.</param>
        /// <param name="sightComm">The sight comm.</param>
        /// <param name="picInfo">The pic info.</param>
        /// <param name="siService">The si service.</param>
        /// <param name="ucityService">The ucity service.</param>
        /// <param name="hlmService">The HLM service.</param>
        public TourPlanService(iPow.Domain.Repository.ITourPlanRepository tourPlan,
            iPow.Domain.Repository.ITourPlanDetailRepository tourPlanDetail,
            iPow.Domain.Repository.ITourClassRepository tourClass,
            iPow.Domain.Repository.ISightInfoRepository sightInfo,
            iPow.Domain.Repository.ISightClassRepository sightClass,
            iPow.Domain.Repository.IHotelCommRepository hotelComm,
            iPow.Domain.Repository.IHotelPropertyInfoRepository hotelPropertyInfo,
            iPow.Domain.Repository.IHotelPicRepository hotelPic,
            iPow.Domain.Repository.ISightCommRepository sightComm,
            iPow.Domain.Repository.IPicInfoRepository picInfo,
            iPow.Application.jq.Service.ISightInfoService siService,
            iPow.Service.Union.Service.ICityService ucityService,
            iPow.Service.Union.Service.IHotelLeftMidService hlmService
                 )
        {
            if (tourPlan == null)
            {
                throw new ArgumentNullException("tourPlanRepository is null");
            }
            if (tourPlanDetail == null)
            {
                throw new ArgumentNullException("tourPlanDetailRepository is null");
            }
            if (tourClass == null)
            {
                throw new ArgumentNullException("tourclassrepository is null");
            }
            if (sightInfo == null)
            {
                throw new ArgumentNullException("sightinforepository is null");
            }
            if (sightClass == null)
            {
                throw new ArgumentNullException("sightclassrepository is null");
            }

            if (hotelComm == null)
            {
                throw new ArgumentNullException("hotelcommrepository is null");
            }
            if (hotelPropertyInfo == null)
            {
                throw new ArgumentNullException("hotelpropertyinforepository is null");
            }
            if (hotelPic == null)
            {
                throw new ArgumentNullException("hotelpicrepository is null");
            }

            if (sightComm == null)
            {
                throw new ArgumentNullException("sightcommrepository is null");
            }
            if (picInfo == null)
            {
                throw new ArgumentNullException("picinforepository is null");
            }
            if (siService == null)
            {
                throw new ArgumentNullException("sightinfoservice is null");
            }
            if (ucityService == null)
            {
                throw new ArgumentNullException("unionCityService is null");
            }
            if (ucityService == null)
            {
                throw new ArgumentNullException("hotelleftmidservice is null");
            }
            tourPlanRepository = tourPlan;
            tourPlanDetailRepository = tourPlanDetail;
            tourClassRepository = tourClass;
            sightInfoRepository = sightInfo;
            sightClassRepository = sightClass;
            hotelCommRepository = hotelComm;
            hotelPropertyInfoRepository = hotelPropertyInfo;
            hotelPicRepository = hotelPic;
            sightCommRepository = sightComm;
            picInfoRepository = picInfo;
            sightInfoService = siService;
            unionCityService = ucityService;
            hotelLeftMidService = hlmService;
        }
コード例 #14
0
        /// <summary>
        /// Initializes a new instance of the <see cref="TourPlanService"/> class.
        /// </summary>
        /// <param name="tourPlan">The tour plan.</param>
        /// <param name="tourPlanDetail">The tour plan detail.</param>
        /// <param name="tourClass">The tour class.</param>
        /// <param name="sightInfo">The sight info.</param>
        /// <param name="sightClass">The sight class.</param>
        /// <param name="hotelComm">The hotel comm.</param>
        /// <param name="hotelPropertyInfo">The hotel property info.</param>
        /// <param name="hotelPic">The hotel pic.</param>
        /// <param name="sightComm">The sight comm.</param>
        /// <param name="picInfo">The pic info.</param>
        /// <param name="siService">The si service.</param>
        /// <param name="ucityService">The ucity service.</param>
        /// <param name="hlmService">The HLM service.</param>
        public TourPlanService(iPow.Domain.Repository.ITourPlanRepository tourPlan,
                               iPow.Domain.Repository.ITourPlanDetailRepository tourPlanDetail,
                               iPow.Domain.Repository.ITourClassRepository tourClass,
                               iPow.Domain.Repository.ISightInfoRepository sightInfo,
                               iPow.Domain.Repository.ISightClassRepository sightClass,
                               iPow.Domain.Repository.IHotelCommRepository hotelComm,
                               iPow.Domain.Repository.IHotelPropertyInfoRepository hotelPropertyInfo,
                               iPow.Domain.Repository.IHotelPicRepository hotelPic,
                               iPow.Domain.Repository.ISightCommRepository sightComm,
                               iPow.Domain.Repository.IPicInfoRepository picInfo,
                               iPow.Application.jq.Service.ISightInfoService siService,
                               iPow.Service.Union.Service.ICityService ucityService,
                               iPow.Service.Union.Service.IHotelLeftMidService hlmService
                               )
        {
            if (tourPlan == null)
            {
                throw new ArgumentNullException("tourPlanRepository is null");
            }
            if (tourPlanDetail == null)
            {
                throw new ArgumentNullException("tourPlanDetailRepository is null");
            }
            if (tourClass == null)
            {
                throw new ArgumentNullException("tourclassrepository is null");
            }
            if (sightInfo == null)
            {
                throw new ArgumentNullException("sightinforepository is null");
            }
            if (sightClass == null)
            {
                throw new ArgumentNullException("sightclassrepository is null");
            }

            if (hotelComm == null)
            {
                throw new ArgumentNullException("hotelcommrepository is null");
            }
            if (hotelPropertyInfo == null)
            {
                throw new ArgumentNullException("hotelpropertyinforepository is null");
            }
            if (hotelPic == null)
            {
                throw new ArgumentNullException("hotelpicrepository is null");
            }

            if (sightComm == null)
            {
                throw new ArgumentNullException("sightcommrepository is null");
            }
            if (picInfo == null)
            {
                throw new ArgumentNullException("picinforepository is null");
            }
            if (siService == null)
            {
                throw new ArgumentNullException("sightinfoservice is null");
            }
            if (ucityService == null)
            {
                throw new ArgumentNullException("unionCityService is null");
            }
            if (ucityService == null)
            {
                throw new ArgumentNullException("hotelleftmidservice is null");
            }
            tourPlanRepository          = tourPlan;
            tourPlanDetailRepository    = tourPlanDetail;
            tourClassRepository         = tourClass;
            sightInfoRepository         = sightInfo;
            sightClassRepository        = sightClass;
            hotelCommRepository         = hotelComm;
            hotelPropertyInfoRepository = hotelPropertyInfo;
            hotelPicRepository          = hotelPic;
            sightCommRepository         = sightComm;
            picInfoRepository           = picInfo;
            sightInfoService            = siService;
            unionCityService            = ucityService;
            hotelLeftMidService         = hlmService;
        }