Exemple #1
0
        /// <summary>
        /// This function is used to Get the Investigation details.
        /// <param name="ComplainId"></param>
        /// </summary>
        /// <returns>InvestigationTable</returns>
        public InvestigationTable GetInvestigationDetail(Guid ComplainId)
        {
            InvestigationTable InvTable = new InvestigationTable();

            try
            {
                InvTable = IgrssAdapters.InvestigationAdapter.GetInvestigationDetailsByComplainId(ComplainId);
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(InvTable);
        }
Exemple #2
0
 /// <summary>
 /// This function is used to Get the Investigation details.
 /// <param name="ComplainId"></param>
 /// </summary>
 /// <returns>InvestigationTable</returns>
 public InvestigationTable GetInvestigationDetail(Guid ComplainId)
 {
     InvestigationTable InvTable = new InvestigationTable();
     try
     {
         InvTable=IgrssAdapters.InvestigationAdapter.GetInvestigationDetailsByComplainId(ComplainId);
     }
     catch (Exception ex)
     {
         if(ExceptionPolicy.HandleException(ex, "DAL"))
         throw;
     }
     return InvTable;
 }