123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public enum SupplierProductOrderStrategy
- {
- /// <summary>
- /// Find the supplier product that has exactly the right dimensions.
- /// </summary>
- Exact,
- /// <summary>
- /// Same as <see cref="SupplierProductOrderStrategy.Exact"/>, but round up the quantity.
- /// </summary>
- RoundUp,
- LowestUnitPrice,
- LowestOverallPrice,
- LowestOverstock
- }
- }
|