using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; // This is the dummy data for the products namespace ATB_ChainPattern.DummyData { public class Product { public ProductType ProductType { get; set; } public ProductName ProductName { get; set; } } public enum ProductType { Forex, Commodity, Stock, Crypto, OtherCurrency } public enum ProductName { // Stocks TeslaStock, AppleStock, MicrosoftStock, GoogleStock, // Commodities Gold, Silver, Bronze, // Forex EURUSD, GBPUSD, USDJPY, USDCAD, // Not worth buying // Crypto Bitcoin, // Worth buying Ethereum, // Worth buying Ripple, // Not worth buying Starknet // Not worth buying } }