Example #1
0
        //}
        public HighCourtTable GetHighCourtAppealData(string HighCourtFileNo)
        {
            HighCourtTable RetData = new HighCourtTable();

            try
            {
                RetData = IgrssAdapters.HighCourtAdapter.GetOffenceDetailsByHighCourtFileNo(HighCourtFileNo);
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(RetData);
        }
Example #2
0
 //}
 public HighCourtTable GetHighCourtAppealData(string HighCourtFileNo)
 {
     HighCourtTable RetData = new HighCourtTable();
     try
     {
         RetData = IgrssAdapters.HighCourtAdapter.GetOffenceDetailsByHighCourtFileNo(HighCourtFileNo);
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return RetData;
 }