Ejemplo n.º 1
0
 private IQueryable <DataAccess.Contract.Models.Cargo> GetAvailableCargos(double maxVolume, int maxWeight)
 {
     return(_cargoRepository.Get().Where(c => c.Volume < maxVolume && c.Weight < maxWeight));
 }
Ejemplo n.º 2
0
 private IQueryable <Cargo> GetAvailableCargos(double maxVolume, int maxWeight)
 {
     return(_cargoRepository.Get().Where(c => c.Volume < maxVolume && c.Weight < maxWeight));
 }