예제 #1
0
파일: MTOM.cs 프로젝트: 15831944/JIBE-ERP
 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);
     }
 }
예제 #2
0
 private void BindSupplier()
 {
     GrdSupplier.DataSource = BLL_TRV_Supplier.Get_SupplierList(UDFLib.ConvertStringToNull(txtSupplierSearch.Text), RequestID);
     GrdSupplier.DataBind();
 }