public static List <Transporte> GetTransportes()
        {
            EmpresaDeViajesContext Base = new EmpresaDeViajesContext();
            List <Transporte>      A    = Base.Transportes.Where(m => m.Activo == true && m.CiudadOrigen.Activo == true && m.CiudadDestino.Activo == true).ToList();

            return(A);
        }
        public static List <Excursion> GetExcursiones()
        {
            EmpresaDeViajesContext Base = new EmpresaDeViajesContext();
            List <Excursion>       A    = Base.Excursiones.Where(m => m.Activo == true).ToList();

            return(A);
        }
        public static List <Estadia> GetEstadias()
        {
            EmpresaDeViajesContext Base = new EmpresaDeViajesContext();
            List <Estadia>         A    = Base.Estadias.Where(m => m.Destino.Activo == true && m.Activo == true).ToList();

            return(A);
        }
Beispiel #4
0
        public static IEnumerable <SelectListItem> GetClientes()
        {
            EmpresaDeViajesContext Base = new EmpresaDeViajesContext();

            var Clientes = Base.Usuarios.Where(c => c.Activo == true).Select
                               (c =>
                               new SelectListItem
            {
                Value = c.Id.ToString(),
                Text  = c.NombreApellido + " Documento:" + c.Ci,
            });

            return(new SelectList(Clientes, "Value", "Text"));;
        }
        // para obtenerlos destino y asi agregarselos a un transporte
        public static IEnumerable <SelectListItem> GetDestinos()
        {
            EmpresaDeViajesContext Base = new EmpresaDeViajesContext();

            var Destinos = Base.Destinos.Where(m => m.Activo == true).Select
                               (a =>
                               new SelectListItem
            {
                Value = a.Codigo.ToString(),
                Text  = a.Nombre,
            });

            return(new SelectList(Destinos, "Value", "Text"));;
        }