コード例 #1
0
 public NoteInfoController(INoteInfoService noteInfoService)
 {
     this.noteInfoService = noteInfoService;
 }
コード例 #2
0
 public NoteInfoController(IUnitOfWork unitOfWork, INoteInfoService noteInfoService, ICourseService courseService)
 {
     this.unitOfWork      = unitOfWork;
     this.noteInfoService = noteInfoService;
     this.courseService   = courseService;
 }
コード例 #3
0
ファイル: HomeController.cs プロジェクト: FFeat/learngit
 public HomeController(INoteInfoService ns)
 {
     this.noteInfoService = ns;
 }