// <fileinfo name="CustomerDemographicsRow_Base.cs">
// <copyright>
// All rights reserved.
// </copyright>
// <remarks>
// Do not change this source code manually. Changes to this file may
// cause incorrect behavior and will be lost if the code is regenerated.
// </remarks>
// <generator rewritefile="True" infourl="http://www.SharpPower.com">RapTier</generator>
// </fileinfo>
using System;
namespace MyCompany.MyProject.Db
{
/// <summary>
/// The base class for <see cref="CustomerDemographicsRow"/> that
/// represents a record in the <c>CustomerDemographics</c> table.
/// </summary>
/// <remarks>
/// Do not change this source code manually. Update the <see cref="CustomerDemographicsRow"/>
/// class if you need to add or change some functionality.
/// </remarks>
public abstract class CustomerDemographicsRow_Base
{
private string _customerTypeID;
private string _customerDesc;
/// <summary>
/// Initializes a new instance of the <see cref="CustomerDemographicsRow_Base"/> class.
/// </summary>
public CustomerDemographicsRow_Base()
{
// EMPTY
}
/// <summary>
/// Gets or sets the <c>CustomerTypeID</c> column value.
/// </summary>
/// <value>The <c>CustomerTypeID</c> column value.</value>
public string CustomerTypeID
{
get { return _customerTypeID; }
set { _customerTypeID = value; }
}
/// <summary>
/// Gets or sets the <c>CustomerDesc</c> column value.
/// This column is nullable.
/// </summary>
/// <value>The <c>CustomerDesc</c> column value.</value>
public string CustomerDesc
{
get { return _customerDesc; }
set { _customerDesc = value; }
}
/// <summary>
/// Returns the string representation of this instance.
/// </summary>
/// <returns>The string representation of this instance.</returns>
public override string ToString()
{
System.Text.StringBuilder dynStr = new System.Text.StringBuilder(GetType().Name);
dynStr.Append(':');
dynStr.Append(" CustomerTypeID=");
dynStr.Append(CustomerTypeID);
dynStr.Append(" CustomerDesc=");
dynStr.Append(CustomerDesc);
return dynStr.ToString();
}
} // End of CustomerDemographicsRow_Base class
} // End of namespace