using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public enum SupplierProductOrderStrategy { /// /// Find the supplier product that has exactly the right dimensions. /// Exact, /// /// Same as , but round up the quantity. /// RoundUp, LowestUnitPrice, LowestOverallPrice, LowestOverstock } }