コード例 #1
0
ファイル: PayCalculationController.cs プロジェクト: jeryhu/bk
 public PayCalculationController(
     IClassHourStatisticsAppService teacherClassHoursStatisticsAppService
     , IStudentAppService studentAppService
     , ICacheManager cacheManager)
 {
     this._teacherClassHoursStatisticsAppService = teacherClassHoursStatisticsAppService;
     this._studentAppService = studentAppService;
     this._cacheManager      = cacheManager;
 }
コード例 #2
0
 public OfficeHourStatisticsController(IClassHourStatisticsAppService teacherOfficeHoursStatisticsAppService)
 {
     this._teacherOfficeHoursStatisticsAppService = teacherOfficeHoursStatisticsAppService;
 }