This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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=""; |
NewerOlder