Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save codereflection/529980 to your computer and use it in GitHub Desktop.
Save codereflection/529980 to your computer and use it in GitHub Desktop.
public class BusinessCardInfo
{
protected int businessCardId;
protected int customerID;
protected int businessCardDesignID;
protected string bCardHtmlBlock;
protected string companyName;
protected string companyMessage;
protected string fullName;
protected string jobTitle;
protected string addressLine1;
protected string addressLine2;
protected string state;
protected string addressLine3;
protected string phone;
protected string fax;
protected string phoneTwo;
protected string phoneThree;
protected string phoneTypeOne;
protected string phoneTypeTwo;
protected string phoneTypeThree;
protected string phoneTypeFour;
protected string email;
protected string website;
protected string createdBy;
protected DateTime createdDate;
protected string updatedBy;
protected DateTime updatedDate;
public BusinessCardInfo(int CustomerID,int BusinessCardDesignID,string BCardHtmlBlock,string CompanyName,string CompanyMessage,string FullName,string JobTitle,string AddressLine1,string AddressLine2,string State,string AddressLine3,string Phone,string Fax,string PhoneTwo,string PhoneThree,string PhoneTypeOne,string PhoneTypeTwo,string PhoneTypeThree,string PhoneTypeFour,string Email,string Website,string CreatedBy,DateTime CreatedDate,string UpdatedBy,DateTime UpdatedDate)
{
this.customerID=CustomerID;
this.businessCardDesignID=BusinessCardDesignID;
this.bCardHtmlBlock=BCardHtmlBlock;
this.companyName=CompanyName;
this.companyMessage = CompanyMessage;
this.fullName=FullName;
this.jobTitle=JobTitle;
this.addressLine1=AddressLine1;
this.addressLine2=AddressLine2;
this.state=State;
this.addressLine3=AddressLine3;
this.phone=Phone;
this.fax=Fax;
this.phoneTwo=PhoneTwo;
this.phoneThree=PhoneThree;
this.phoneTypeOne=PhoneTypeOne;
this.phoneTypeTwo=PhoneTypeTwo;
this.phoneTypeThree=PhoneTypeThree;
this.phoneTypeFour=PhoneTypeFour;
this.email=Email;
this.website=Website;
this.createdBy=CreatedBy;
this.createdDate=CreatedDate;
this.updatedBy=UpdatedBy;
this.updatedDate=UpdatedDate;
}
public int BusinessCardId
{
get
{
return businessCardId;
}
set
{
businessCardId = value;
}
}
public int CustomerId
{
get
{
return customerID;
}
set
{
customerID = value;
}
}
public int BusinessCardDesignID
{
get
{
return businessCardDesignID;
}
set
{
businessCardDesignID = value;
}
}
public string BCardHtmlBlock
{
get
{
return bCardHtmlBlock;
}
set
{
bCardHtmlBlock = value;
}
}
public string CompanyName
{
get
{
return companyName;
}
set
{
companyName = value;
}
}
public string CompanyMessage
{
get
{
return companyMessage;
}
set
{
companyMessage = value;
}
}
public string FullName
{
get
{
return fullName;
}
set
{
fullName = value;
}
}
public string JobTitle
{
get
{
return jobTitle;
}
set
{
jobTitle = value;
}
}
public string AddressLine1
{
get
{
return addressLine1;
}
set
{
addressLine1 = value;
}
}
public string AddressLine2
{
get
{
return addressLine2;
}
set
{
addressLine2 = value;
}
}
public string State
{
get
{
return state;
}
set
{
state = value;
}
}
public string AddressLine3
{
get
{
return addressLine3;
}
set
{
addressLine3 = value;
}
}
public string Phone
{
get
{
return phone;
}
set
{
phone = value;
}
}
public string Fax
{
get
{
return fax;
}
set
{
fax = value;
}
}
public string PhoneTwo
{
get
{
return phoneTwo;
}
set
{
phoneTwo = value;
}
}
public string PhoneThree
{
get
{
return phoneThree;
}
set
{
phoneThree = value;
}
}
public string PhoneTypeOne
{
get
{
return phoneTypeOne;
}
set
{
phoneTypeOne = value;
}
}
public string PhoneTypeTwo
{
get
{
return phoneTypeTwo;
}
set
{
phoneTypeTwo = value;
}
}
public string PhoneTypeThree
{
get
{
return phoneTypeThree;
}
set
{
phoneTypeThree = value;
}
}
public string PhoneTypeFour
{
get
{
return phoneTypeFour;
}
set
{
phoneTypeFour = value;
}
}
public string Email
{
get
{
return email;
}
set
{
email = value;
}
}
public string Website
{
get
{
return website;
}
set
{
website = value;
}
}
public string CreatedBy
{
get
{
return createdBy;
}
set
{
createdBy = value;
}
}
public DateTime CreatedDate
{
get
{
return createdDate;
}
set
{
createdDate = value;
}
}
public string UpdatedBy
{
get
{
return updatedBy;
}
set
{
updatedBy = value;
}
}
public DateTime UpdatedDate
{
get
{
return updatedDate;
}
set
{
updatedDate = value;
}
}
public BusinessCardInfo()
{
//
// TODO: Add constructor logic here
//
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment