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