Exemple #1
0
        public StockArrivalBuilder WithType(StockArrivalType type)
        {
            _arrival.Type = type;

            return(this);
        }
 private static bool TypesPredicate(StockArrival arrival, StockArrivalType type)
 {
     return(arrival.Type == type);
 }