Exemplo n.º 1
0
 /// <summary>
 /// This function will return the Renewal History of the vendor license.
 /// </summary>
 /// <param name="LicenseApplicationId"></param>
 /// <returns>RenewTable</returns>
 public RenewTable GetRenewalHistryByLICID(Guid LicenseApplicationId)
 {
     RenewTable Dt = new RenewTable();
     try
     {
         Dt=IgrssAdapters.LicRenewAdapter.GetRenewalHistryByLicenseApplicationId(LicenseApplicationId);
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }
Exemplo n.º 2
0
 /// <summary>
 /// This function will return the Renewal History of the vendor license.
 /// </summary>
 /// <param name="LicenseNo"></param>
 /// <returns>RenewTable</returns>
 public RenewTable GetRenewalHistry(string LicenseNo)
 {
     RenewTable Dt = new RenewTable();
     try
     {
         Dt=IgrssAdapters.LicRenewAdapter.GetRenewalHistry(LicenseNo);
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }
Exemplo n.º 3
0
        /// <summary>
        /// This function will return the Renewal History of the vendor license.
        /// </summary>
        /// <param name="LicenseApplicationId"></param>
        /// <returns>RenewTable</returns>
        public RenewTable GetRenewalHistryByLICID(Guid LicenseApplicationId)
        {
            RenewTable Dt = new RenewTable();

            try
            {
                Dt = IgrssAdapters.LicRenewAdapter.GetRenewalHistryByLicenseApplicationId(LicenseApplicationId);
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }
Exemplo n.º 4
0
        /// <summary>
        /// This function will return the Renewal History of the vendor license.
        /// </summary>
        /// <param name="LicenseNo"></param>
        /// <returns>RenewTable</returns>
        public RenewTable GetRenewalHistry(string LicenseNo)
        {
            RenewTable Dt = new RenewTable();

            try
            {
                Dt = IgrssAdapters.LicRenewAdapter.GetRenewalHistry(LicenseNo);
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }