public void AddToCustomerPayoutSettings(CustomerPayoutSetting customerPayoutSetting)
 {
     base.AddObject("CustomerPayoutSettings", customerPayoutSetting);
 }
 public static CustomerPayoutSetting CreateCustomerPayoutSetting(int customerID, bool produce1099, int taxAddressTypeID, int taxNameTypeID, global::System.DateTime modifiedDate)
 {
     CustomerPayoutSetting customerPayoutSetting = new CustomerPayoutSetting();
     customerPayoutSetting.CustomerID = customerID;
     customerPayoutSetting.Produce1099 = produce1099;
     customerPayoutSetting.TaxAddressTypeID = taxAddressTypeID;
     customerPayoutSetting.TaxNameTypeID = taxNameTypeID;
     customerPayoutSetting.ModifiedDate = modifiedDate;
     return customerPayoutSetting;
 }