public DataTable Get_SupplierList(string searchtext) { try { return(BLL_TRV_Supplier.Get_SupplierList(searchtext)); } catch (Exception ex) { CustomSoapException(ex.GetType().Name, ex.Message); return(null); } }
private void BindSupplier() { GrdSupplier.DataSource = BLL_TRV_Supplier.Get_SupplierList(UDFLib.ConvertStringToNull(txtSupplierSearch.Text), RequestID); GrdSupplier.DataBind(); }