コード例 #1
0
 public GetCalendarHandler(ICalendarPersistencePort cpp)
 {
     _cpp = cpp;
 }
コード例 #2
0
 public CreateCalendarHandler(ICalendarPersistencePort cpp)
 {
     this._cpp = cpp;
 }
コード例 #3
0
 public AvaliableCalendarsRequestHandler(ICalendarPersistencePort cpp)
 {
     this._cpp = cpp;
 }
コード例 #4
0
 public CreateTimeslotHandler(ITeacherPersistencePort tpp,
                              ICalendarPersistencePort cpp)
 {
     this._tpp = tpp;
     this._cpp = cpp;
 }