eventos ------------------------------------------------------ class ty_EEventos { string MessageCode = ""; string MessageDescription = ""; List Events; } class ty_EEvento { string EventID = ""; string Event_Name = ""; DateTime Event_Date = new DateTime(1900, 01, 01); string Venue_Name = ""; // Event_Venue = ""; string EventTypeCode = ""; string Event_Comments = ""; string URL_Map = ""; DateTime BeginDateTime = new DateTime(1900, 01, 01); DateTime EndDateTime = new DateTime(1900, 01, 01); } Secciones ------------------------------------------------------ class ty_ESecciones { List Sections; string EventID = ""; string Event_Name = ""; DateTime Event_Date = new DateTime(1900, 01, 01); string Event_Venue = ""; string EventTypeCode = ""; string Event_Comments = ""; string URL_Map = ""; DateTime BeginDateTime = new DateTime(1900, 01, 01); DateTime EndDateTime = new DateTime(1900, 01, 01); string MessageCode = ""; string MessageDescription = ""; List DeliveryTypes; } Seccion ------------------------------------------------------ class ty_ESeccion { string Section_Id = ""; string Section_Name = ""; string Section_Order = ""; decimal Section_Price1 = 0; DateTime Section_BeginDateTime = new DateTime(1900, 01, 01); DateTime Section_EndDateTime = new DateTime(1900, 01, 01); string Section_Status = ""; string Section_PriceType = ""; string cxs = ""; } class ty_EDeliveryTypes { string Delivery_Option = ""; int Delivery_Value = 0; } asientes ------------------------------------- class ty_ESeat { string Row_Name = ""; string Seat_Number = ""; } ty_EReservacion -------------------------------- class ty_EReservacion { string IDReservacion = ""; string Event_Name = ""; DateTime FechaReservacion = new DateTime(1900, 01, 01); DateTime Section_EndDateTime = new DateTime(1900, 01, 01); string Section_Name = ""; List Seats; string MessageCode = ""; string MessageDescription = ""; } factura -------------------------------- class ty_EFactura { string NumeroFactura = ""; string NCF = ""; DateTime FechaFactura = new DateTime(1900, 01, 01); decimal MontoTotal = 0; decimal tax = 0; decimal CargoServicio = 0; string TicketSecuencia = ""; string URL = ""; string Nombre = ""; decimal MontoCobrar = 0; string DescripcionPromocion = ""; decimal Descuento = 0; decimal MontoPagar = 0; string Apellidos = ""; string CorreoElectronico = ""; string DocumentoID = ""; string MessageCode = ""; string MessageDescription = ""; List Details; } class Detail { string event_name = ""; string section_name = ""; string row_name = ""; string seat_number = ""; string ticket_code = ""; }