Exemplo n.º 1
0
 public MakeBookingVM()
 {
     this.flightInfoService = Factory.GetObject <IFlightInfoService>();
     if (Entity == null)
     {
         Entity = new  List <PassengerDataDto>();
     }
 }
Exemplo n.º 2
0
 public FlightSearchBookingVM()
 {
     this.flightInfoService = Factory.GetObject <IFlightInfoService>();
     if (Entity == null)
     {
         Entity = new List <BookingDetailDto>();
     }
 }
Exemplo n.º 3
0
 //private readonly IFlightQueryRepository _generalRepository2;
 public Test()
 {
     this.FlightInfoService = Factory.GetObject <IFlightInfoService>();
 }
 public FlightCheckAvailabilityVM()
 {
     this.flightInfoService = Factory.GetObject <IFlightInfoService>();
 }
Exemplo n.º 5
0
 public HomeController(IFlightInfoService flight, ICurrencyRepository currRep, IIataRepository iataRep)
 {
     _flight  = flight;
     _currRep = currRep;
     _iataRep = iataRep;
 }
Exemplo n.º 6
0
 public FlightDataVM()
 {
     this.flightInfoService = Factory.GetObject <IFlightInfoService>();
 }