public List <Historial> ListarVehiculosParqueados() { return(ConversorHistorial.AModelo(realm.All <EntidadHistorial>().Where(h => h.FechaSalida == null).ToList())); }
public Historial ObtenerVehiculoParqueado(string placa) { var historial = realm.All <EntidadHistorial>().Where(h => h.FechaSalida == null && h.Vehiculo.Placa == placa); return(ConversorHistorial.AModelo((EntidadHistorial)historial)); }
public List <Historial> ListarHistoriales() { return(ConversorHistorial.AModelo(realm.All <EntidadHistorial>().ToList())); }