Esempio n. 1
0
        private void TranslateLearningAreaToLearningAreaBDO(LearningArea la, LearningAreaBDO labdo)
        {
            SubjectService ss = new SubjectService();

            labdo.Academic         = la.Academic;
            labdo.Description      = la.Description;
            labdo.LearningAreaCode = la.LearningAreaCode;
            labdo.RatePerUnit      = la.RatePerUnit;
            labdo.Units            = la.Units;
            labdo.Subjects         = ss.ToSubjectBDOList(la.Subjects);
        }
Esempio n. 2
0
 private void TranslateLearningAreaToLearningAreaBDO(LearningArea la, LearningAreaBDO labdo)
 {
     SubjectService ss = new SubjectService();
     labdo.Academic = la.Academic;
     labdo.Description = la.Description;
     labdo.LearningAreaCode = la.LearningAreaCode;
     labdo.RatePerUnit = la.RatePerUnit;
     labdo.Units = la.Units;
     labdo.Subjects = ss.ToSubjectBDOList(la.Subjects);
 }