public BookingServiceFacade(IBookingService bookingService, ILocationRepository locationRepository, RouteCandidateDTOAssember routeCandidateAssembler, CargoDataAccess cargoDataAccess)
 {
    _bookingService = bookingService;
    _cargoDataAccess = cargoDataAccess;
    _routeCandidateAssembler = routeCandidateAssembler;
    _locationRepository = locationRepository;
 }      
Esempio n. 2
0
 public BookingServiceFacade(IBookingService bookingService, ILocationRepository locationRepository, RouteCandidateDTOAssember routeCandidateAssembler, CargoDataAccess cargoDataAccess)
 {
     _bookingService          = bookingService;
     _cargoDataAccess         = cargoDataAccess;
     _routeCandidateAssembler = routeCandidateAssembler;
     _locationRepository      = locationRepository;
 }
 public BookingServiceFacade(IBookingService bookingService, ILocationRepository locationRepository, ICargoRepository cargoRepository, RouteCandidateDTOAssember routeCandidateAssembler, CargoRoutingDTOAssembler cargoRoutingAssembler)
 {
     _bookingService          = bookingService;
     _cargoRoutingAssembler   = cargoRoutingAssembler;
     _routeCandidateAssembler = routeCandidateAssembler;
     _cargoRepository         = cargoRepository;
     _locationRepository      = locationRepository;
 }
 public BookingServiceFacade(IBookingService bookingService, ILocationRepository locationRepository, ICargoRepository cargoRepository, RouteCandidateDTOAssember routeCandidateAssembler, CargoRoutingDTOAssembler cargoRoutingAssembler)
 {
    _bookingService = bookingService;
    _cargoRoutingAssembler = cargoRoutingAssembler;
    _routeCandidateAssembler = routeCandidateAssembler;
    _cargoRepository = cargoRepository;
    _locationRepository = locationRepository;
 }
 public BookingServiceFacade(IBookingService bookingService, RouteCandidateDTOAssember routeCandidateAssembler)
 {
    _bookingService = bookingService;
    _routeCandidateAssembler = routeCandidateAssembler;
 }      
 public BookingServiceFacade(IBookingService bookingService, RouteCandidateDTOAssember routeCandidateAssembler)
 {
     _bookingService          = bookingService;
     _routeCandidateAssembler = routeCandidateAssembler;
 }