public DeparturesController(IDepartureQueryService departureQueryService, IDepartureCommandService departureCommandService, ITourQueryService tourQueryService, IOrganizationService organizationService)
 {
     _departureQueryService = departureQueryService;
     _departureCommandService = departureCommandService;
     _tourQueryService = tourQueryService;
     _organizationService = organizationService;
 }
Example #2
0
 public DeparturesController(IDepartureQueryService departureQueryService, IDepartureCommandService departureCommandService, ITourQueryService tourQueryService, IOrganizationService organizationService)
 {
     _departureQueryService   = departureQueryService;
     _departureCommandService = departureCommandService;
     _tourQueryService        = tourQueryService;
     _organizationService     = organizationService;
 }
 public PerspectivesController(IPerspectiveService perspectiveService, IPerspectiveCommandService perspectiveCommandService, ITourQueryService tourQueryService, ICommentCommandService commentCommandService, ISEOToolStaticPageQueryService seoToolStaticPageQueryService)
 {
     _perspectiveService            = perspectiveService;
     _perspectiveCommandService     = perspectiveCommandService;
     _tourQueryService              = tourQueryService;
     _commentCommandService         = commentCommandService;
     _seoToolStaticPageQueryService = seoToolStaticPageQueryService;
 }
 public PerspectivesController(IPerspectiveService perspectiveService, IPerspectiveCommandService perspectiveCommandService, ITourQueryService tourQueryService, ICommentCommandService commentCommandService, ISEOToolStaticPageQueryService seoToolStaticPageQueryService)
 {
     _perspectiveService = perspectiveService;
     _perspectiveCommandService = perspectiveCommandService;
     _tourQueryService = tourQueryService;
     _commentCommandService = commentCommandService;
     _seoToolStaticPageQueryService = seoToolStaticPageQueryService;
 }
   public TourTimelineItemsController(ITourTimelineQueryService tourTimelineQueryService,
 ITourTimelineCommandService tourTimelineCommandService,
 ITourQueryService tourQueryService)
   {
       _tourTimelineQueryService = tourTimelineQueryService;
         _tourTimelineCommandService = tourTimelineCommandService;
         _tourQueryService = tourQueryService;
   }
Example #6
0
 public TourTimelineItemsController(ITourTimelineQueryService tourTimelineQueryService,
                                    ITourTimelineCommandService tourTimelineCommandService,
                                    ITourQueryService tourQueryService)
 {
     _tourTimelineQueryService   = tourTimelineQueryService;
     _tourTimelineCommandService = tourTimelineCommandService;
     _tourQueryService           = tourQueryService;
 }
 // GET: /Admin/Perspectives/
 public PerspectivesController(IPerspectiveQueryService perspectiveQueryService, IPerspectiveCommandService perspectiveCommandService,ITourQueryService tourQueryService)
 {
     _perspectiveQueryService = perspectiveQueryService;
     _perspectiveCommandService = perspectiveCommandService;
     _tourQueryService = tourQueryService;
 }
 public DiscountCodesController(IDiscountCodeService discountCodeService, ITourQueryService tourQueryService, IProductQueryService productQueryService)
 {
     _discountCodeService = discountCodeService;
     _tourQueryService    = tourQueryService;
     _productQueryService = productQueryService;
 }
 public ToursController(ITourQueryService tourQueryService)
 {
     _tourQueryService = tourQueryService;
 }
 public ToursController(ITourQueryService tourQueryService, ITourCommandService tourCommandService)
 {
     _tourQueryService = tourQueryService;
     _tourCommandService = tourCommandService;
 }
Example #11
0
 public ToursController(ITourQueryService tourQueryService)
 {
     _tourQueryService = tourQueryService;
 }
 public DiscountCodesController(IDiscountCodeService discountCodeService, ITourQueryService tourQueryService, IProductQueryService productQueryService)
 {
     _discountCodeService = discountCodeService;
       _tourQueryService = tourQueryService;
       _productQueryService = productQueryService;
 }
Example #13
0
 public ToursController(ITourQueryService tourQueryService, ITourCommandService tourCommandService)
 {
     _tourQueryService   = tourQueryService;
     _tourCommandService = tourCommandService;
 }
 // GET: /Admin/Perspectives/
 public PerspectivesController(IPerspectiveQueryService perspectiveQueryService, IPerspectiveCommandService perspectiveCommandService, ITourQueryService tourQueryService)
 {
     _perspectiveQueryService   = perspectiveQueryService;
     _perspectiveCommandService = perspectiveCommandService;
     _tourQueryService          = tourQueryService;
 }