本文整理汇总了C#中BusinessObjects.MasterDataBLL.IsAccountNoNull方法的典型用法代码示例。如果您正苦于以下问题:C# MasterDataBLL.IsAccountNoNull方法的具体用法?C# MasterDataBLL.IsAccountNoNull怎么用?C# MasterDataBLL.IsAccountNoNull使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BusinessObjects.MasterDataBLL
的用法示例。
在下文中一共展示了MasterDataBLL.IsAccountNoNull方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Page_Load
protected void Page_Load(object sender, EventArgs e)
{
base.Page_Load(sender, e);
String title = this.GetLocalResourceObject("titleLabel.Text").ToString();
this.Page.Title = title;
int VendorID = int.Parse(Request["VendorID"]);
this.ViewState["VendorID"] = VendorID;
MasterData.VendorRow vendorRow = new MasterDataBLL().GetVendorByID(VendorID);
txtVendorName.Text = vendorRow.VendorName;
txtVendorAddress.Text = vendorRow.VendorAddress;
txtCity.Text = vendorRow.City;
txtPostal.Text = vendorRow.Postal;
txtContactName.Text = vendorRow.ContactName;
MasterDataBLL masterDataBLL = new MasterDataBLL();
MasterData.VendorTypeRow VendorTypeRow = masterDataBLL.GetVendorTypeById(vendorRow.VendorTypeID);
txtVendorType.Text = VendorTypeRow.VendorTypeName;
txtCurrency.Text = masterDataBLL.GetCurrencyByID(VendorTypeRow.CurrencyID).CurrencyFullName;
txtCompany.Text = masterDataBLL.GetCompanyById(VendorTypeRow.CompanyID).CompanyName;
txtCompanyCode.Text = masterDataBLL.GetCompanyById(VendorTypeRow.CompanyID).CompanyCode;
this.txtPhoneNumber.Text = vendorRow.PhoneNumber;
this.txtOneTimeVendor.Text = vendorRow.OneTimeVendor ? "Y" : "N";
this.txtHoldVendor.Text = vendorRow.HoldVendor ? "Y" : "N";
if (!vendorRow.IsPurchaseingPostalCodeNull()) {
this.txtPurchaseingPostalCode.Text = vendorRow.PurchaseingPostalCode;
}
if (!vendorRow.IsAlphaSearchKeyNull()) {
this.txtAlphaSearchKey.Text = vendorRow.AlphaSearchKey;
}
if (!vendorRow.IsPurchasingCityNull()) {
this.txtPurchasingCity.Text = vendorRow.PurchasingCity;
}
if (!vendorRow.IsPurchasingContactNull()) {
this.txtPurchasingContact.Text = vendorRow.PurchasingContact;
}
if (!vendorRow.IsPurchasingAddressNull()) {
this.txtPurchasingAddress.Text = vendorRow.PurchasingAddress;
}
if (!vendorRow.IsPurchasePhoneNumberNull()) {
this.txtPurchasePhoneNumber.Text = vendorRow.PurchasePhoneNumber;
}
this.txtBankCode.Text = vendorRow.BankCode;
this.txtMethodPayment.Text = masterDataBLL.GetMethodPaymentById(vendorRow.MethodPaymentID)[0].MethodPaymentName;
this.txtPaymentTerm.Text = masterDataBLL.GetPaymentTermById(vendorRow.PaymentTermID)[0].PaymentTermName;
this.txtTransType.Text = masterDataBLL.GetTransTypeById(vendorRow.TransTypeID)[0].TransTypeName;
txtVATRate.Text = masterDataBLL.GetVatTypeById(vendorRow.VATTypeID)[0].VatTypeName;
txtBankName.Text = vendorRow.BankName.ToString();
if (!vendorRow.IsAccountNoNull()) {
txtAccountNo.Text = vendorRow.AccountNo;
}
if (!vendorRow.IsBankNoNull()) {
this.txtBankNo.Text = vendorRow.BankNo;
}
if (!vendorRow.IsACTypeIDNull()) {
this.txtACType.Text = masterDataBLL.GetACTypeById(vendorRow.ACTypeID)[0].ACTypeName;
}
if (!vendorRow.IsRemarkNull()) {
this.txtRemark.Text = vendorRow.Remark;
}
}