// GET: api/Puerta/5 public Puerta Get(int id) { List <Puerta> gateList = new Puerta().getGates(ref mensaje_error, ref numero_error); crypting c = new crypting(); Puerta x = gateList.ElementAt(id); Puerta spes = new Puerta(); spes.Cod_Puerta = x.Cod_Puerta; spes.Numero_Puerta = c.decrypt(x.Numero_Puerta); spes.Detalle = c.decrypt(x.Detalle); return(spes); }
// GET: api/Pais/5 public Pais Get(int id) { List <Pais> countryList = new Pais().getAllCountries(ref mensaje_error, ref numero_error); crypting c = new crypting(); Pais x = countryList.ElementAt(id); Pais spes = new Pais(); spes.Cod_Pais = x.Cod_Pais; spes.Nombre_Pais = c.decrypt(x.Nombre_Pais); spes.Imagen = c.decrypt(x.Imagen); return(spes); }
// GET: api/easypay/5 public easy_pay Get(int id) { List <easy_pay> item_carlist = new easy_pay().cargar_easypay(ref mensaje_error, ref numero_error); crypting c = new crypting(); easy_pay x = item_carlist.ElementAt(id); easy_pay spes = new easy_pay(); spes.Num_Cuenta = x.Num_Cuenta; spes.Codigo_Seguridad = c.decrypt(x.Codigo_Seguridad); spes.Constrasena = c.decrypt(x.Constrasena); spes.Fondos = x.Fondos; return(spes); }
// GET: api/Carrito/5 public Carrito Get(int id) { List <Carrito> item_carlist = new Carrito().cargar_carrito(ref mensaje_error, ref numero_error); crypting c = new crypting(); Carrito x = item_carlist.ElementAt(id); Carrito spes = new Carrito(); spes.Cod_Item = x.Cod_Item; spes.Codigo_Vuelo = x.Codigo_Vuelo; spes.Pais = c.decrypt(x.Pais); spes.Precio = c.decrypt(x.Precio); return(spes); }
// GET: api/buyingdetails/5 public Compras_details Get(int id) { List <Compras_details> item_carlist = new Compras_details().cargar_compra_especifica(ref mensaje_error, ref numero_error, Compras_details.GlobalValueBUYCODE, Compras_details.GlobalValueUSER); crypting c = new crypting(); Compras_details x = item_carlist.ElementAt(id); Compras_details spes = new Compras_details(); spes.Codigo_Compra = x.Codigo_Compra; spes.Codigo_User = c.decrypt(x.Codigo_User); spes.Codigo_Vuelo = c.decrypt(x.Codigo_Vuelo); spes.Pais = c.decrypt(x.Pais); spes.Precio = c.decrypt(x.Precio); return(spes); }
// GET: api/reservationdetails/5 public reservation_details Get(int id) { List <reservation_details> item_carlist = new reservation_details().cargar_reserva_especifica(ref mensaje_error, ref numero_error, reservation_details.GlobalValueBUYCODE, reservation_details.GlobalValueUSER); crypting c = new crypting(); reservation_details x = item_carlist.ElementAt(id); reservation_details spes = new reservation_details(); spes.Booking_ID = x.Booking_ID; spes.Cod_User = c.decrypt(x.Cod_User); spes.Cod_Vuelo = c.decrypt(x.Cod_Vuelo); spes.Pais = c.decrypt(x.Pais); spes.Precio = c.decrypt(x.Precio); return(spes); }
// GET: api/FilteredAgency/5 public Agencia Get(int id) { List <Agencia> airlineList = new Agencia().getFilteredAgencias(ref mensaje_error, ref numero_error, Agencia.GlobalValueCountry); crypting c = new crypting(); Agencia x = airlineList.ElementAt(id); Agencia spes = new Agencia(); spes.Cod_Agencia = x.Cod_Agencia; spes.Nombre_Agencia = c.decrypt(x.Nombre_Agencia); spes.Imagen = c.decrypt(x.Imagen); spes.Cod_Pais_FK = x.Cod_Pais_FK; spes.Cod_Aerolinea = c.decrypt(x.Cod_Aerolinea); return(spes); }
// GET: api/Errors/5 public Errors Get(int id) //ID de Error o ID de de error de SQL? Ojete { List <Errors> listaError = new Errors().cargar_lista_errores(ref mensaje_error, ref numero_error); crypting c = new crypting(); Errors x = listaError.ElementAt(id); //ojete con la x, es necesaria en errors? Errors spes = new Errors(); spes.Error_ID = x.Error_ID; //x.Error_ID; spes.Error_Message = c.decrypt(x.Error_Message); spes.Time = c.decrypt(x.Time); spes.Date = c.decrypt(x.Date); spes.Error_Number = c.decrypt(x.Error_Number); return(spes); }
// GET: api/ErrorsFilterByDateRangeController/5 public Errors Get(int id) { List <Errors> bitacoras = new Errors().GetErrorsUserFilteredbyDateRange(ref mensaje_error, ref numero_error, Errors.GlobalValueFilterDateIni, Errors.GlobalValueFilterDateFin); crypting c = new crypting(); Errors x = bitacoras.ElementAt(id); Errors spes = new Errors(); spes.Error_ID = x.Error_ID; spes.Error_Message = c.decrypt(x.Error_Message); spes.Time = c.decrypt(x.Time); spes.Date = c.decrypt(x.Date); spes.Error_Number = c.decrypt(x.Error_Number); return(spes); }
// GET: api/Consecutivos/5 public Consecutivos Get(int id) { List <Consecutivos> listaConsecutivos = new Consecutivos().getAllCons(ref mensaje_error, ref numero_error); crypting c = new crypting(); Consecutivos x = listaConsecutivos.ElementAt(id); Consecutivos spes = new Consecutivos(); spes.Codigo_Consecutivo = x.Codigo_Consecutivo; spes.Descripcion = c.decrypt(x.Descripcion); spes.Valor = c.decrypt(x.Valor); spes.Prefijo = c.decrypt(x.Prefijo); spes.Rango_Ini = c.decrypt(x.Rango_Ini); spes.Rango_Fin = c.decrypt(x.Rango_Fin); return(spes); }
// GET: api/Payment/5 public cards Get(int id) { List <cards> item_carlist = new cards().cargar_tarjeta(ref mensaje_error, ref numero_error); crypting c = new crypting(); cards x = item_carlist.ElementAt(id); cards spes = new cards(); spes.Num_Tarjeta = x.Num_Tarjeta; spes.Mes_Exp = c.decrypt(x.Mes_Exp); spes.Ano_Exp = c.decrypt(x.Ano_Exp); spes.CVV = c.decrypt(x.CVV); spes.Monto = x.Monto; spes.Tipo = c.decrypt(x.Tipo); spes.Card_Type = c.decrypt(x.Card_Type); return(spes); }
// GET: api/Reservas/5 public Reservas Get(int id) { Reservas y = new Reservas(); List <Reservas> item_carlist = new Reservas().cargar_reserva_especifica(ref mensaje_error, ref numero_error, Reservas.GlobalValueUSER); crypting c = new crypting(); Reservas x = item_carlist.ElementAt(id); Reservas spes = new Reservas(); spes.Cod_Reserva = x.Cod_Reserva; spes.Numero_Reservacion = x.Numero_Reservacion; spes.Booking_ID = x.Booking_ID; spes.Cod_User_FK = c.decrypt(x.Cod_User_FK); spes.Cantidad = c.decrypt(x.Cantidad); spes.Total = x.Total; spes.Payment_Method = c.decrypt(x.Payment_Method); spes.FechaReservation = x.FechaReservation; return(spes); }
// GET: api/Compras/5 public Compras Get(int id) { Compras y = new Compras(); List <Compras> item_carlist = new Compras().cargar_compras(ref mensaje_error, ref numero_error, Compras.GlobalValueUSER); crypting c = new crypting(); Compras x = item_carlist.ElementAt(id); Compras spes = new Compras(); spes.Codigo_Compras = x.Codigo_Compras; spes.Cod_User_FK = c.decrypt(x.Cod_User_FK); spes.Codigo_Vuelo_FK = x.Codigo_Vuelo_FK; spes.Cantidad = x.Cantidad; spes.Total = x.Total; spes.DateBuy = x.DateBuy; return(spes); }
// GET: api/VuelosSArribo/5 public Vuelos Get(int id) { List<Vuelos> listaUser = new Vuelos().GetFlightsSArribo(ref mensaje_error, ref numero_error); crypting c = new crypting(); Vuelos x = listaUser.ElementAt(id); Vuelos spes = new Vuelos(); spes.Codigo_Vuelo = x.Codigo_Vuelo; spes.Aerolinea = c.decrypt(x.Aerolinea); spes.Cod_Pais_FK = c.decrypt(x.Cod_Pais_FK); spes.Fecha = c.decrypt(x.Fecha); spes.Hora = c.decrypt(x.Hora); spes.Estado = c.decrypt(x.Estado); spes.Cod_Puerta_FK = c.decrypt(x.Cod_Puerta_FK); spes.CS = x.CS; spes.Price = c.decrypt(x.Price); return spes; }
// GET: api/Usuario/5 public Usuario Get(int id) { List <Usuario> listaUser = new Usuario().cargar_lista_usuarios(ref mensaje_error, ref numero_error); crypting c = new crypting(); Usuario x = listaUser.ElementAt(id); Usuario spes = new Usuario(); spes.Cod_User = x.Cod_User; spes.Username = c.decrypt(x.Username); spes.Password = c.decrypt(x.Password); spes.Rol = c.decrypt(x.Rol); spes.Email = c.decrypt(x.Email); spes.Question = c.decrypt(x.Question); spes.Answer = c.decrypt(x.Answer); return(spes); }
// GET: api/BitacoraTypeUserRangeDatesFilter/5 public Bitacora Get(int id) { List <Bitacora> bitacoras = new Bitacora().GetBitacorasUserFilteredbyDateRangeAndTypeAndUser(ref mensaje_error, ref numero_error, Bitacora.GlobalValueFilterUser, Bitacora.GlobalValueFilterType, Bitacora.GlobalValueFilterDateIni, Bitacora.GlobalValueFilterDateFin); crypting c = new crypting(); Bitacora x = bitacoras.ElementAt(id); Bitacora spes = new Bitacora(); spes.Cod_Registro = x.Cod_Registro; spes.Cod_User_FK = c.decrypt(x.Cod_User_FK); spes.FechaTime = c.decrypt(x.FechaTime); spes.Tipo = c.decrypt(x.Tipo); spes.Time = c.decrypt(x.Time); spes.Cod_Regis = x.Cod_Regis; spes.Descripcion = c.decrypt(x.Descripcion); spes.RegistroDetalle = c.decrypt(x.RegistroDetalle); return(spes); }
// GET: api/Bitacora/5 public Bitacora Get(int id) { List <Bitacora> bitacoras = new Bitacora().GetBitacoras(ref mensaje_error, ref numero_error); crypting c = new crypting(); Bitacora x = bitacoras.ElementAt(id); Bitacora spes = new Bitacora(); spes.Cod_Registro = x.Cod_Registro; spes.Cod_User_FK = c.decrypt(x.Cod_User_FK); spes.FechaTime = c.decrypt(x.FechaTime); spes.Tipo = c.decrypt(x.Tipo); spes.Time = c.decrypt(x.Time); spes.Cod_Regis = x.Cod_Regis; spes.Descripcion = c.decrypt(x.Descripcion); spes.RegistroDetalle = c.decrypt(x.RegistroDetalle); return(spes); }