public ClassHourStatisticsAppService(
     IRepository <SignInRecord, string> signInRepository,
     ICategorysAppService categorysAppService,
     IStudentAppService studentAppService)
 {
     this._signInRepository    = signInRepository;
     this._categorysAppService = categorysAppService;
     this._studentAppService   = studentAppService;
 }
Example #2
0
 public SignInRecordAppService(
     IRepository <SignInRecord, string> signInRepository,
     ICategorysAppService categorysAppService,
     IStudentAppService studentAppService,
     ITeacherCourseArrangeAppService teacherCourseArrangeAppService
     )
 {
     this._signInRepository               = signInRepository;
     this._categorysAppService            = categorysAppService;
     this._studentAppService              = studentAppService;
     this._teacherCourseArrangeAppService = teacherCourseArrangeAppService;
 }
Example #3
0
 public CourseArrangeController(
     ITeacherCourseArrangeAppService teacherCourseArrangeAppService,
     IStudentCourseArrangeAppService studentCourseArrangeAppService,
     IStudentAppService studentAppService,
     ICategorysAppService categoryAppService,
     IUserAppService userAppService
     )
 {
     this._teacherCourseArrangeAppService = teacherCourseArrangeAppService;
     this._studentCourseArrangeAppService = studentCourseArrangeAppService;
     this._studentAppService  = studentAppService;
     this._categoryAppService = categoryAppService;
     this._userAppService     = userAppService;
 }