コード例 #1
0
 public NoteController(INoteService noteService, IUserService userService,
                       ITriageService triageService, ICardiovascularNoteService cardiovascularNoteService)
 {
     this.noteService               = noteService;
     this.userService               = userService;
     this.triageService             = triageService;
     this.cardiovascularNoteService = cardiovascularNoteService;
 }
コード例 #2
0
 public CardiovascularNoteController(ICardiovascularNoteService cardiovascularNoteService, IUserService userService)
 {
     this.cardiovascularNoteService = cardiovascularNoteService;
     this.userService = userService;
 }