//Lista Pago (S) public List <MPago> pago() { List <MPago> lista = new MapeoCliente().pago.ToList(); MPago state = new MPago(); state.Id = 0; state.Descripcion = "-- Seleccione --"; lista.Add(state); return(lista.OrderBy(x => x.Id).ToList()); }
//Lista Ubicacion (S) public List <Destino> ubicacion() { List <Destino> lista = new MapeoCliente().destino.ToList(); Destino destino = new Destino(); destino.Id = 0; destino.LugarUbicacion = "-- Seleccione --"; lista.Add(destino); return(lista.OrderBy(x => x.Id).ToList()); }