using System; using System.Collections; using System.Collections.Generic; using System.Text; namespace VoterRegistrationDatabase { #region VoterInformation public class VoterInformation { #region Member Variables protected int _VoterNumber; protected string _DriversLicenseNumberStateID; protected string _SocialSecurityNumber; protected string _FirstName; protected string _LastName; protected string _StreetAddress; protected string _AptSuiteFloor; protected string _City; protected string _State; protected string _ZipCode; protected string _PolitcalParty; protected string _CityTownCouncilDistrict; protected string _StateAssemblyDistrict; protected string _StateSenateDistrict; protected string _USHouseDistrict; protected unknown _SignaturePictureLessThanKB; #endregion #region Constructors public VoterInformation() { } public VoterInformation(string DriversLicenseNumberStateID, string SocialSecurityNumber, string FirstName, string LastName, string StreetAddress, string AptSuiteFloor, string City, string State, string ZipCode, string PolitcalParty, string CityTownCouncilDistrict, string StateAssemblyDistrict, string StateSenateDistrict, string USHouseDistrict, unknown SignaturePictureLessThanKB) { this._DriversLicenseNumberStateID=DriversLicenseNumberStateID; this._SocialSecurityNumber=SocialSecurityNumber; this._FirstName=FirstName; this._LastName=LastName; this._StreetAddress=StreetAddress; this._AptSuiteFloor=AptSuiteFloor; this._City=City; this._State=State; this._ZipCode=ZipCode; this._PolitcalParty=PolitcalParty; this._CityTownCouncilDistrict=CityTownCouncilDistrict; this._StateAssemblyDistrict=StateAssemblyDistrict; this._StateSenateDistrict=StateSenateDistrict; this._USHouseDistrict=USHouseDistrict; this._SignaturePictureLessThanKB=SignaturePictureLessThanKB; } #endregion #region Public Properties public virtual int VoterNumber { get {return _VoterNumber;} set {_VoterNumber=value;} } public virtual string DriversLicenseNumberStateID { get {return _DriversLicenseNumberStateID;} set {_DriversLicenseNumberStateID=value;} } public virtual string SocialSecurityNumber { get {return _SocialSecurityNumber;} set {_SocialSecurityNumber=value;} } public virtual string FirstName { get {return _FirstName;} set {_FirstName=value;} } public virtual string LastName { get {return _LastName;} set {_LastName=value;} } public virtual string StreetAddress { get {return _StreetAddress;} set {_StreetAddress=value;} } public virtual string AptSuiteFloor { get {return _AptSuiteFloor;} set {_AptSuiteFloor=value;} } public virtual string City { get {return _City;} set {_City=value;} } public virtual string State { get {return _State;} set {_State=value;} } public virtual string ZipCode { get {return _ZipCode;} set {_ZipCode=value;} } public virtual string PolitcalParty { get {return _PolitcalParty;} set {_PolitcalParty=value;} } public virtual string CityTownCouncilDistrict { get {return _CityTownCouncilDistrict;} set {_CityTownCouncilDistrict=value;} } public virtual string StateAssemblyDistrict { get {return _StateAssemblyDistrict;} set {_StateAssemblyDistrict=value;} } public virtual string StateSenateDistrict { get {return _StateSenateDistrict;} set {_StateSenateDistrict=value;} } public virtual string USHouseDistrict { get {return _USHouseDistrict;} set {_USHouseDistrict=value;} } public virtual unknown SignaturePictureLessThanKB { get {return _SignaturePictureLessThanKB;} set {_SignaturePictureLessThanKB=value;} } #endregion } #endregion }