Beispiel #1
0
 public IEnumerable <ReceiptDetail> GetReceiptDetailListByProc(string receiptnum, string customerid, string warehousename, string ProcName)
 {
     try
     {
         ReceiptManagementAccessor accessor = new ReceiptManagementAccessor();
         return(accessor.GetReceiptDetailListByProc(receiptnum, customerid, warehousename, ProcName));
     }
     catch (Exception ex)
     {
         return(new List <ReceiptDetail>());
     }
 }