コード例 #1
0
        /// <summary>
        /// This functionSelect All the Act Details By RefundApplicationId

        /// </summary>
        /// <param name="RefundApplicationId">RefundApplicationId</param>
        /// <returns>A datatable  containing all the records i.e,RefundActsApplicable </returns>
        public RefundActsApplicable SelectActDetailsByRefundApplicationId(Guid RefundApplicationId)
        {
            RefundActsApplicable Dt = new RefundActsApplicable();

            try
            {
                Dt = IgrssAdapters.RefundActsApplicable.SelectActDetailsByRefundApplicationId(RefundApplicationId);
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }
コード例 #2
0
        /// <summary>
        /// This function Gets all the Acts
        /// </summary>
        /// <returns>a datatble containg all the records i.e,RefundActsApplicable</returns>
        public RefundActsApplicable GetAllActsApplicable()
        {
            RefundActsApplicable Dt = new RefundActsApplicable();

            try
            {
                Dt = IgrssAdapters.RefundActsApplicable.GetAllRefundActsApplicable();
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }
コード例 #3
0
ファイル: RefundApplication.cs プロジェクト: UrviGandhi/IGRSS
 /// <summary>
 /// This functionSelect All the Act Details By RefundApplicationId
 /// </summary>
 /// <param name="RefundApplicationId">RefundApplicationId</param>
 /// <returns>A datatable  containing all the records i.e,RefundActsApplicable </returns>
 public RefundActsApplicable SelectActDetailsByRefundApplicationId(Guid RefundApplicationId)
 {
     RefundActsApplicable Dt = new RefundActsApplicable();
     try
     {
         Dt = IgrssAdapters.RefundActsApplicable.SelectActDetailsByRefundApplicationId(RefundApplicationId);
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }
コード例 #4
0
ファイル: RefundApplication.cs プロジェクト: UrviGandhi/IGRSS
 /// <summary>
 /// This function Gets all the Acts
 /// </summary>
 /// <returns>a datatble containg all the records i.e,RefundActsApplicable</returns>
 public RefundActsApplicable GetAllActsApplicable()
 {
     RefundActsApplicable Dt = new RefundActsApplicable();
     try
     {
         Dt = IgrssAdapters.RefundActsApplicable.GetAllRefundActsApplicable();
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }