Beispiel #1
0
 public GetMyOffersQuery(IReadOnlyOfferService offerService, IMapper mapper,
                         IHttpContextService httpContextService)
 {
     this.offerService       = offerService;
     this.mapper             = mapper;
     this.httpContextService = httpContextService;
 }
Beispiel #2
0
        public IndexModel(IReadOnlyOfferService offerService, IOffersFilterService offersFilterService, IMapper mapper)
        {
            this.offerService        = offerService;
            this.offersFilterService = offersFilterService;
            this.mapper = mapper;

            Title = "Home";
        }
Beispiel #3
0
 public DenyOfferAuctionCommand(IOfferAuctionManager auctionManager, IReadOnlyOfferService offerService, IMapper mapper, INotifier notifier,
                                IHubManager <NotifierHub> hubManager)
 {
     this.auctionManager = auctionManager;
     this.offerService   = offerService;
     this.mapper         = mapper;
     this.notifier       = notifier;
     this.hubManager     = hubManager;
 }
        public OfferDetailsModel(IReadOnlyOfferService offerService, IBookingService bookingService, IOpinionService opinionService,
                                 IBookingValidationService bookingValidationService, IRatingManager ratingManager, IMapper mapper)
        {
            this.offerService             = offerService;
            this.bookingService           = bookingService;
            this.opinionService           = opinionService;
            this.bookingValidationService = bookingValidationService;
            this.ratingManager            = ratingManager;
            this.mapper = mapper;

            Title = "Offer";
        }
Beispiel #5
0
 public GetOffersQuery(IReadOnlyOfferService offerService, IMapper mapper, IHttpContextWriter httpContextWriter)
 {
     this.offerService      = offerService;
     this.mapper            = mapper;
     this.httpContextWriter = httpContextWriter;
 }
Beispiel #6
0
 public GetOfferQuery(IReadOnlyOfferService offerService, IMapper mapper)
 {
     this.offerService = offerService;
     this.mapper       = mapper;
 }