public IQueryable<Shipment> GetShipmentByRegulation(RegulationEnum regulation)
 {
     return Session.Query<Shipment>().Where(x => x.Regulation == regulation);
 }
Ejemplo n.º 2
0
 public IQueryable <Shipment> GetShipmentByRegulation(RegulationEnum regulation)
 {
     return(Session.Query <Shipment>().Where(x => x.Regulation == regulation));
 }