예제 #1
0
        /// <summary>
        /// This functionality for Getting All the refund Orders

        /// </summary>
        /// <returns>A datatable object containg all the records i.e,RefundOrderTable</returns>
        public RefundOrderTable GetAllRefundOrders()
        {
            RefundOrderTable Dt = new RefundOrderTable();

            try
            {
                Dt = IgrssAdapters.RefundOrder.GetRefundOrderDetails();
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }
예제 #2
0
 /// <summary>
 /// This functionality for Getting All the refund Orders 
 /// </summary>
 /// <returns>A datatable object containg all the records i.e,RefundOrderTable</returns>
 public RefundOrderTable GetAllRefundOrders()
 {
     RefundOrderTable Dt = new RefundOrderTable();
     try
     {
         Dt = IgrssAdapters.RefundOrder.GetRefundOrderDetails();
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }