Ejemplo n.º 1
0
 public BaseClass()
 {
         AirportSerivceClass_ = new Airport.AirportServiceClass();
         FlightServiceClass_ = new Flight.FlightServiceClass();
         LatLongClass_ = new Map.VELatLong();
         flightsList = new List<Flight.Flight>();
         flightXML = FlightXMLUtil.getXMLInstance();
 }
Ejemplo n.º 2
0
 public BaseClass()
 {
     AirportSerivceClass_ = new Airport.AirportServiceClass();
     FlightServiceClass_  = new Flight.FlightServiceClass();
     LatLongClass_        = new Map.VELatLong();
     flightsList          = new List <Flight.Flight>();
     flightXML            = FlightXMLUtil.getXMLInstance();
 }
 public static FlightXML2 getXMLInstance()
 {
     if (FlightXMLInstance == null)
     {
         FlightXMLInstance = new FlightXML2();
         FlightXMLInstance.Credentials = new NetworkCredential("dedual", "7a4f1d723b7ce020ee6ba1bbf1517b20342cdce4");
         FlightXMLInstance.PreAuthenticate = true;
     }
     return FlightXMLInstance;
 }
Ejemplo n.º 4
0
 public static FlightXML2 getXMLInstance()
 {
     if (FlightXMLInstance == null)
     {
         FlightXMLInstance                 = new FlightXML2();
         FlightXMLInstance.Credentials     = new NetworkCredential("dedual", "7a4f1d723b7ce020ee6ba1bbf1517b20342cdce4");
         FlightXMLInstance.PreAuthenticate = true;
     }
     return(FlightXMLInstance);
 }
 public FlightServiceClass()
 {
     flightXML_ = FlightXMLUtil.getXMLInstance();
     AirportService_ = new Airport.AirportServiceClass();
 }
Ejemplo n.º 6
0
 public AirportServiceClass()
 {
     flightXML_     = FlightXMLUtil.getXMLInstance();
     AirportObjects = new List <Airport>();
     FlightObjects  = new List <Flight.Flight>();
 }
 public FlightServiceClass()
 {
     flightXML_      = FlightXMLUtil.getXMLInstance();
     AirportService_ = new Airport.AirportServiceClass();
 }
 public AirportServiceClass()
 {
     flightXML_ = FlightXMLUtil.getXMLInstance();
     AirportObjects = new List<Airport>();
     FlightObjects = new List<Flight.Flight>();
 }