public カレンダーアプリケーションサービス(IカレンダーRepository calendarRepository, IカレンダーエントリーRepository calendarEntryRepository, カレンダー識別サービス calendarIdentityService, Iコラボレータサービス collaboratorService) { this.calendarRepository = calendarRepository; this.calendarEntryRepository = calendarEntryRepository; this.calendarIdentityService = calendarIdentityService; this.collaboratorService = collaboratorService; }
public カレンダー識別サービス(IカレンダーRepository calendarRepository, IカレンダーエントリーRepository calendarEntryRepository) { this.calendarRepository = calendarRepository; this.calendarEntryRepository = calendarEntryRepository; }
public カレンダーエントリーアプリケーションサービス(IカレンダーエントリーRepository calendarEntryRepository, Iコラボレータサービス collaboratorService) { this.calendarEntryRepository = calendarEntryRepository; this.collaboratorService = collaboratorService; }