/// <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); }
/// <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); }
/// <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; }
/// <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; }