Exemple #1
0
 public DeleteImagesFromApartmentCommandHandler(IApartmentReservationDbContext context)
 {
     this.context = context;
 }
Exemple #2
0
 public CreateAmenityCommandHandler(IApartmentReservationDbContext context)
 {
     this.context = context;
 }
Exemple #3
0
 public DeleteUserCommandHandler(IApartmentReservationDbContext context, IMediator mediator)
 {
     this.context  = context;
     this.mediator = mediator;
 }
Exemple #4
0
 public GetAllHostsQueryHandler(IApartmentReservationDbContext context)
 {
     this.context = context;
 }
Exemple #5
0
 public GetUserByIdQueryHandler(IApartmentReservationDbContext context)
 {
     this.context = context;
 }
 public CostCalculator(IApartmentReservationDbContext context, IHolidayService holidayService)
 {
     this.context        = context;
     this.holidayService = holidayService;
 }
 public UpdateForRentalDatesCommandHandler(IApartmentReservationDbContext context)
 {
     this.context = context;
 }
Exemple #8
0
 public GetTotalCostQueryHandler(IApartmentReservationDbContext context, IHolidayService holidayService)
 {
     this.context        = context;
     this.holidayService = holidayService;
 }
Exemple #9
0
 public AuthService(RoleFactory roleFactory, IApartmentReservationDbContext context)
 {
     this.roleFactory = roleFactory;
     this.context     = context;
 }
Exemple #10
0
 public GetAllApartmentsQueryHandler(IApartmentReservationDbContext context, IMediator mediator)
 {
     this.context  = context;
     this.mediator = mediator;
 }
 public AddImagesToApartmentCommandHandler(IApartmentReservationDbContext context, IHostingEnvironment env)
 {
     this.context = context;
     this.env     = env;
 }
 public GetAvailableDatesQueryHandler(IApartmentReservationDbContext context)
 {
     this.context = context;
 }
Exemple #13
0
 public AuthService(IApartmentReservationDbContext context)
 {
     this.context = context;
 }
 public DeleteGuestCommandHandler(IApartmentReservationDbContext context)
 {
     this.context = context;
 }
Exemple #15
0
 public AddAmenitiesToApartmentCommandHandler(IApartmentReservationDbContext context)
 {
     this.context = context;
 }
Exemple #16
0
 public UpdateUserCommandHandler(IApartmentReservationDbContext context)
 {
     this.context = context;
 }
 public CreateReservationCommandHandler(IApartmentReservationDbContext context, IMediator mediator, ICostCalculator costCalculator)
 {
     this.context        = context;
     this.mediator       = mediator;
     this.costCalculator = costCalculator;
 }