/// <summary>
 /// Deprecated Method for adding a new object to the InvRemitAddresses EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToInvRemitAddresses(InvRemitAddress invRemitAddress)
 {
     base.AddObject("InvRemitAddresses", invRemitAddress);
 }
 /// <summary>
 /// Create a new InvRemitAddress object.
 /// </summary>
 /// <param name="company">Initial value of the Company property.</param>
 /// <param name="street">Initial value of the Street property.</param>
 /// <param name="city">Initial value of the City property.</param>
 /// <param name="state">Initial value of the State property.</param>
 /// <param name="zip">Initial value of the Zip property.</param>
 public static InvRemitAddress CreateInvRemitAddress(global::System.String company, global::System.String street, global::System.String city, global::System.String state, global::System.String zip)
 {
     InvRemitAddress invRemitAddress = new InvRemitAddress();
     invRemitAddress.Company = company;
     invRemitAddress.Street = street;
     invRemitAddress.City = city;
     invRemitAddress.State = state;
     invRemitAddress.Zip = zip;
     return invRemitAddress;
 }