private void LoadProductDetail()
 {
     try
     {
         var list = _ProductDetailRepo.GetAll();
         ddLProductDetail.DataSource = list;
         ddLProductDetail.DataBind();
         ddLProductDetail.SelectedValue = Utils.CStrDef(id);
     }
     catch //(Exception)
     {
         //throw;
     }
 }
Example #2
0
 public List <tblProduct> GetAll()
 {
     return(productDetailRepo.GetAll());
 }