Exemple #1
0
        /// <summary>
        ///This function  Gets all  stamp Details By RefundApplicationId

        /// </summary>
        /// <param name="RefundApplicationId">RefundApplicationId is the key on which the selection will be made</param>
        /// <returns>a Datatable object i.e, RefundStampDetailsTable</returns>
        public RefundStampDetailsTable SelectRefundStampDetailsByRefundId(Guid RefundApplicationId)
        {
            RefundStampDetailsTable Dt = new RefundStampDetailsTable();

            try
            {
                Dt = IgrssAdapters.RefundStampDetailsAdapter.SelectRefundStampDetailsByRefundId(RefundApplicationId);
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }
Exemple #2
0
        /// <summary>
        /// This function Gets All the Stamps Details
        /// </summary>
        /// <returns> Datatable object i.e,RefundStampDetailsTable which contains all the Refund Stamp Details</returns>
        public RefundStampDetailsTable GetAllStampDetails()
        {
            RefundStampDetailsTable Dt = new RefundStampDetailsTable();

            try
            {
                Dt = IgrssAdapters.RefundStampDetailsAdapter.GetRefundStampDetails();
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }
 /// <summary>
 ///This function  Gets all  stamp Details By RefundApplicationId
 /// </summary>
 /// <param name="RefundApplicationId">RefundApplicationId is the key on which the selection will be made</param>
 /// <returns>a Datatable object i.e, RefundStampDetailsTable</returns>
 public RefundStampDetailsTable SelectRefundStampDetailsByRefundId(Guid RefundApplicationId)
 {
     RefundStampDetailsTable Dt = new RefundStampDetailsTable();
     try
     {
         Dt = IgrssAdapters.RefundStampDetailsAdapter.SelectRefundStampDetailsByRefundId(RefundApplicationId);
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }
 /// <summary>
 /// This function Gets All the Stamps Details 
 /// </summary>
 /// <returns> Datatable object i.e,RefundStampDetailsTable which contains all the Refund Stamp Details</returns>
 public RefundStampDetailsTable GetAllStampDetails()
 {
     RefundStampDetailsTable Dt = new RefundStampDetailsTable();
     try
     {
         Dt = IgrssAdapters.RefundStampDetailsAdapter.GetRefundStampDetails();
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }