Example #1
0
 public AppliForm(HoloForm hf)
 {
     appliFormId      = hf.stuId + "_" + DateTime.Now.ToString("o");
     stuUnionText     = hf.stuUnionText;
     isResearch       = hf.isResearch;
     researchText     = hf.researchText;
     prizeText        = hf.prizeText;
     introText        = hf.introText;
     appendixFileName = hf.appendixFileName;
 }
Example #2
0
        public Applicant(HoloForm hf, AppliForm af)
        {
            stuId         = hf.stuId;
            name          = hf.name;
            birthDate     = hf.birthDate;
            phone         = hf.phone;
            gender        = hf.gender;
            email         = hf.email;
            grade         = hf.grade;
            college       = hf.college;
            major         = hf.major;
            stuFrom       = hf.stuFrom;
            engType       = hf.engType;
            engGrade      = hf.engGrade;
            photoFileName = hf.photoFileName;

            appliForm = af;
        }