コード例 #1
0
 public TimeslotCrud(IPersonState personState, ITimeslotCommand timeslotCommand, ITimeslotQuery timeslotQuery, ITeacherQuery teacherQuery)
 {
     this.personState     = personState;
     this.timeslotQuery   = timeslotQuery;
     this.timeslotCommand = timeslotCommand;
     this.teacherQuery    = teacherQuery;
 }
コード例 #2
0
 public PersonState(ICookieCRUD cookieCrud, IPersonCommand personCommand, IPersonQuery personQuery, ITeacherQuery teacherQuery, ITeacherCommand teacherCommand, IStudentQuery studentQuery, IStudentCommand studentCommand)
 {
     this.cookieCRUD     = cookieCrud;
     this.personQuery    = personQuery;
     this.personCommand  = personCommand;
     this.teacherCommand = teacherCommand;
     this.teacherQuery   = teacherQuery;
     this.studentCommand = studentCommand;
     this.studentQuery   = studentQuery;
 }