SupplierProductOrderStrategy.cs 529 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Comal.Classes
  5. {
  6. public enum SupplierProductOrderStrategy
  7. {
  8. /// <summary>
  9. /// Find the supplier product that has exactly the right dimensions.
  10. /// </summary>
  11. Exact,
  12. /// <summary>
  13. /// Same as <see cref="SupplierProductOrderStrategy.Exact"/>, but round up the quantity.
  14. /// </summary>
  15. RoundUp,
  16. LowestUnitPrice,
  17. LowestOverallPrice,
  18. LowestOverstock
  19. }
  20. }