コード例 #1
0
 public CalendarApplicationService(ICalendarRepository calendarRepository, ICalendarEntryRepository calendarEntryRepository, ICollaboratorService collaboratorService)
 {
     this.calendarRepository = calendarRepository;
     this.calendarEntryRepository = calendarEntryRepository;
     this.calendarIdentityService = new CalendarIdentityService(calendarRepository, calendarEntryRepository);
     this.collaboratorService = collaboratorService;
 }
コード例 #2
0
 public CalendarApplicationService(ICalendarRepository calendarRepository, ICalendarEntryRepository calendarEntryRepository, CalendarIdentityService calendarIdentityService, ICollaboratorService collaboratorService)
 {
     this.calendarRepository      = calendarRepository;
     this.calendarEntryRepository = calendarEntryRepository;
     this.calendarIdentityService = calendarIdentityService;
     this.collaboratorService     = collaboratorService;
 }
コード例 #3
0
 public CalendarApplicationService(ICalendarRepository calendarRepository,
     ICalendarEntryRepository calendarEntryRepository, CalendarIdentityService calendarIdentityService,
     ICollaboratorService collaboratorService)
 {
     this._calendarRepository = calendarRepository;
     this._calendarEntryRepository = calendarEntryRepository;
     this._calendarIdentityService = calendarIdentityService;
     this._collaboratorService = collaboratorService;
 }
コード例 #4
0
 public CalendarEntryApplicationService(ICalendarEntryRepository calendarEntryRepository, ICollaboratorService collaboratorService)
 {
     this._calendarEntryRepository = calendarEntryRepository;
     this._collaboratorService     = collaboratorService;
 }
コード例 #5
0
 public CalendarIdentityService(ICalendarRepository calendarRepository, ICalendarEntryRepository calendarEntryRepository)
 {
     this.calendarRepository = calendarRepository;
     this.calendarEntryRepository = calendarEntryRepository;
 }
コード例 #6
0
 public CalendarIdentityService(ICalendarRepository calendarRepository, ICalendarEntryRepository calendarEntryRepository)
 {
     this.calendarRepository      = calendarRepository;
     this.calendarEntryRepository = calendarEntryRepository;
 }
コード例 #7
0
 public CalendarEntryApplicationService(ICalendarEntryRepository calendarEntryRepository, ICollaboratorService collaboratorService)
 {
     this.calendarEntryRepository = calendarEntryRepository;
     this.collaboratorService = collaboratorService;
 }