public BookingBusinessApplicationServices(ILocalMapper localMapper) { _localMapper = localMapper; }
public BookingValidationApplicationServices(IBookingFeaturesDomainServices bookingValidationDomainServices, ILocalMapper localMapper) { _bookingValidationDomainServices = bookingValidationDomainServices; _localMapper = localMapper; }
public BookingApplicationServices(IBookingDomainServices bookingDomainServices, ILocalMapper localMapper) { _bookingDomainServices = bookingDomainServices; _localMapper = localMapper; }
public SeatReservationForAircraftsWebService(ISeatAssignmentApplicationService seatAssigmentService, ILocalMapper localMapper) { _seatAssigmentService = seatAssigmentService; _localMapper = localMapper; }
public LocalService(ILocalRepository localRepository, ILocalMapper localMapper) { _localRepository = localRepository; _localMapper = localMapper; }
public SeatAssignmentApplicationService(ISeatAssignment seatAssignment, ILocalMapper localMapper) { _seatAssignment = seatAssignment; _localMapper = localMapper; }