Esempio n. 1
0
        public ApplicantTable GetApplicantDetails()
        {
            ApplicantTable dtappdetails = new ApplicantTable();

            dtappdetails = IgrssAdapters.ApplicantDetails.GetData();
            return(dtappdetails);
        }
Esempio n. 2
0
 public ApplicantTable GetApplicantDetailsByValues(string filePrefix,Nullable<int> FileNo, String FileYear, string ApplicantName, Guid officeId)
 {
     ApplicantTable dtfm = new ApplicantTable();
     try
     {
         dtfm = IgrssAdapters.ApplicantDetails.GetApplicantDetails(filePrefix, FileNo, FileYear, ApplicantName, officeId);
     }
     catch (Exception ex)
     {
     }
     return dtfm;
 }
Esempio n. 3
0
        public ApplicantTable GetApplicantDetailsByValues(string filePrefix, Nullable <int> FileNo, String FileYear, string ApplicantName, Guid officeId)
        {
            ApplicantTable dtfm = new ApplicantTable();

            try
            {
                dtfm = IgrssAdapters.ApplicantDetails.GetApplicantDetails(filePrefix, FileNo, FileYear, ApplicantName, officeId);
            }
            catch (Exception ex)
            {
            }
            return(dtfm);
        }
Esempio n. 4
0
 public ApplicantTable GetApplicantDetails()
 {
     ApplicantTable dtappdetails = new ApplicantTable();
     dtappdetails = IgrssAdapters.ApplicantDetails.GetData();
     return dtappdetails;
 }