using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace bnhtrade.Core.Data.Database { public static class Constants { /// /// Gets the date bnhtrade started trading. /// /// Date and time public static DateTime GetBusinessStartUtc() { DateTime businessStart = new DateTime(2014, 09, 01); return DateTime.SpecifyKind(businessStart, DateTimeKind.Utc); } /// /// /// /// public static string GetMarginSchemeTaxCode() { return "T190"; } public static string GetOrderChannelAmazonUk() { return "Amazon.co.uk"; } /// /// Returns the sql table ID for a condition type /// public enum SkuCondition { New = 10, LikeNew = 11, VeryGood = 12, Good = 13, Acceptable = 14, // add the rest as needed } /// /// Returns the sql table ID for a stock status type /// public enum StockStatusType { FbaInventoryActive = 3, FbaShipment = 4, FbaShippingPlan = 5, // add the rest as needed } } }