コード例 #1
0
 public void Cleanup()
 {
     this._studentCourse            = null;
     this._studentCourseCreationDto = null;
     this._studentCourseDetailsDto  = null;
     this._studentCourseMapper      = null;
 }
コード例 #2
0
 public void Setup()
 {
     this._studentCourse            = StudentCourseTestUtils.GetStudentCourse();
     this._studentCourseCreationDto =
         StudentCourseTestUtils.GetStudentCourseCreationDto(this._studentCourse.CourseId);
     this._studentCourseDetailsDto =
         StudentCourseTestUtils.GetStudentCourseDetailsDto(this._studentCourse.StudentId,
                                                           this._studentCourse.CourseId);
     this._studentCourseMapper = new StudentCourseMapper();
 }