Beispiel #1
0
 public LicenseTable GetLicensedetailByLicenseAppID(Guid LicenseApplicationId)
 {
     LicenseTable Dt = new LicenseTable();
     try
     {
         Dt=IgrssAdapters.LicenseMasterAdapter.GetLicenseDetailByLicenseAppID(LicenseApplicationId);
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }
Beispiel #2
0
        public LicenseTable GetLicensedetailByLicenseAppID(Guid LicenseApplicationId)
        {
            LicenseTable Dt = new LicenseTable();

            try
            {
                Dt = IgrssAdapters.LicenseMasterAdapter.GetLicenseDetailByLicenseAppID(LicenseApplicationId);
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }
Beispiel #3
0
        public LicenseTable GetLicenses()
        {
            LicenseTable Dt = new LicenseTable();

            try
            {
                Dt = IgrssAdapters.LicenseMasterAdapter.GetLicenseDetail();
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }
Beispiel #4
0
 public LicenseTable GetLicenses()
 {
     LicenseTable Dt = new LicenseTable();
     try
     {
         Dt=IgrssAdapters.LicenseMasterAdapter.GetLicenseDetail();
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }