コード例 #1
0
        /// <summary>
        /// This function Gets All the Refunds to be Approved.
        /// </summary>
        /// <returns>Datatable containing all the records of RefundApprovalGridTable</returns>


        public RefundApprovalGridTable GetAllRefundToApprove()
        {
            RefundApprovalGridTable Dt = new RefundApprovalGridTable();

            try
            {
                Dt = IgrssAdapters.RefundApprovalGrid.GetRefundApprovalGrid();
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }
コード例 #2
0
ファイル: RefundApplication.cs プロジェクト: UrviGandhi/IGRSS
 /// <summary>
 /// This function Gets All the Refunds to be Approved.
 /// </summary>
 /// <returns>Datatable containing all the records of RefundApprovalGridTable</returns>
 public RefundApprovalGridTable GetAllRefundToApprove()
 {
     RefundApprovalGridTable Dt = new RefundApprovalGridTable();
     try
     {
         Dt = IgrssAdapters.RefundApprovalGrid.GetRefundApprovalGrid();
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }