/// <summary>
 /// Deprecated Method for adding a new object to the Suppliers EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSuppliers(Suppliers suppliers)
 {
     base.AddObject("Suppliers", suppliers);
 }
 /// <summary>
 /// Create a new Suppliers object.
 /// </summary>
 /// <param name="supplier_ID">Initial value of the Supplier_ID property.</param>
 /// <param name="company_Name">Initial value of the Company_Name property.</param>
 public static Suppliers CreateSuppliers(global::System.Int32 supplier_ID, global::System.String company_Name)
 {
     Suppliers suppliers = new Suppliers();
     suppliers.Supplier_ID = supplier_ID;
     suppliers.Company_Name = company_Name;
     return suppliers;
 }