Example #1
0
        public DTO.ResultValidateApplicant ValidateApplicantBeforeSaveList(string TestingNo, string idcard, DateTime testTingDate, string testTimeCode,
                                                                           string examPlaceCode, string time, List <DTO.AddApplicant> lstApplicant)
        {
            ValidateApplicantBeforeSaveListRequest request = new ValidateApplicantBeforeSaveListRequest()
            {
                TestingNo     = TestingNo,
                IdCard        = idcard,
                TestingDate   = testTingDate,
                TestTimeCode  = testTimeCode,
                ExamPlaceCode = examPlaceCode,
                Time          = time,
                AddApplicants = lstApplicant
            };

            return(svc.ValidateApplicantBeforeSaveList(request));
        }