Files
IHK-Projekt/02_Analyse_Konzept/Common/OrdersHostQuerries/ByCancelledSequencerOrder.cs

4 lines
222 B
C#

public static IQueryable<OrdersHost> ByCancelledSequencerOrder(this IQueryable<OrdersHost> entity)
{
return entity.Where(o => o.Source.Contains(WcsNames.SEQ) && o.Destination == MfcAllDestinations.StorageLoop2);
}