Example #1
0
        public ActionResult _AjaxGetConsignee()
        {
            var consigneeList = ConsigneeBusinessLogic.GetAll();

            return(View(new GridModel(consigneeList)));
        }
Example #2
0
 public void loadConsigneeName()
 {
     cmbConsineeName.DataSource    = ConsigneeBusinessLogic.GetAll();
     cmbConsineeName.ValueMember   = "ConsigneeId";
     cmbConsineeName.DisplayMember = "ConsigneeName";
 }