/// <summary>
 /// There are no comments for Alphabetical_list_of_products in the schema.
 /// </summary>
 public void AddToAlphabetical_list_of_products(Alphabetical_list_of_products alphabetical_list_of_products)
 {
     base.AddObject("Alphabetical_list_of_products", alphabetical_list_of_products);
 }
 /// <summary>
 /// Create a new Alphabetical_list_of_products object.
 /// </summary>
 /// <param name="productID">Initial value of ProductID.</param>
 /// <param name="productName">Initial value of ProductName.</param>
 /// <param name="discontinued">Initial value of Discontinued.</param>
 /// <param name="categoryName">Initial value of CategoryName.</param>
 public static Alphabetical_list_of_products CreateAlphabetical_list_of_products(int productID, string productName, bool discontinued, string categoryName)
 {
     Alphabetical_list_of_products alphabetical_list_of_products = new Alphabetical_list_of_products();
     alphabetical_list_of_products.ProductID = productID;
     alphabetical_list_of_products.ProductName = productName;
     alphabetical_list_of_products.Discontinued = discontinued;
     alphabetical_list_of_products.CategoryName = categoryName;
     return alphabetical_list_of_products;
 }