示例#1
0
        private void CustomerBind(int StoreInOrderId)
        {
            BLL.Customer customerBLL = new BLL.Customer();
            Customer     customer    = customerBLL.GetModelByStoreInOrder(StoreInOrderId);

            if (customer != null)
            {
                hidCustomerId.Value  = customer.Id.ToString();
                labCustomerName.Text = customer.Name;
            }
        }
示例#2
0
 private void CustomerBind(int StoreInOrderId)
 {
     BLL.Customer customerBLL = new BLL.Customer();
     Customer customer = customerBLL.GetModelByStoreInOrder(StoreInOrderId);
     if (customer != null)
     {
         hidCustomerId.Value = customer.Id.ToString();
         labCustomerName.Text = customer.Name;
     }
 }