Example #1
0
        public CsvActionResult <CustomApplicant> csvIndex()
        {
            IApplicantDL           _applicantDL = new ApplicantDL();
            List <CustomApplicant> applicants   = _applicantDL.GetApplicants();

            return(new CsvActionResult <CustomApplicant>(applicants, "ApplicantDetails.csv"));
        }
Example #2
0
        public XmlResult Index()
        {
            IApplicantDL           _applicantDL = new ApplicantDL();
            List <CustomApplicant> applicants   = _applicantDL.GetApplicants();

            return(new XmlResult(applicants));
        }