Skip to content

Instantly share code, notes, and snippets.

View codereflection's full-sized avatar

Jeff Schumacher codereflection

View GitHub Profile
public class BusinessCardInfoUtility
{
public static int AddBusinessCardInfo(BusinessCardInfo bci)
{
string sprocName = "SC_CreateBusinessCardInfoTwo";
int intBusinessCardId = Convert.ToInt32(SqlHelper.ExecuteScalar(Global.ConnString, sprocName,
bci.CustomerId, bci.BusinessCardDesignID, bci.BCardHtmlBlock, bci.CompanyName, bci.CompanyMessage,
bci.FullName, bci.JobTitle, bci.AddressLine1, bci.AddressLine2, bci.State,
bci.AddressLine3, bci.Phone, bci.Fax, bci.PhoneTwo, bci.PhoneThree, bci.PhoneTypeOne, bci.PhoneTypeTwo, bci.PhoneTypeThree, bci.PhoneTypeFour, bci.Email, bci.Website, bci.CreatedBy,
bci.CreatedDate, bci.UpdatedBy, bci.UpdatedDate));
protected string NameOnCreditCard="";
protected string BillingStAdd="";
protected string BillingCity="";
protected string BillingZipCode="";
protected string BillingState="";
protected string BillingEmailAdd="";
protected string BillingPhNo="";
protected string BillingCardType="";
protected string BillingCardNo="";
protected string BillingExpDate="";