public カレンダーアプリケーションサービス(IカレンダーRepository calendarRepository, IカレンダーエントリーRepository calendarEntryRepository, カレンダー識別サービス calendarIdentityService, Iコラボレータサービス collaboratorService)
 {
     this.calendarRepository = calendarRepository;
     this.calendarEntryRepository = calendarEntryRepository;
     this.calendarIdentityService = calendarIdentityService;
     this.collaboratorService = collaboratorService;
 }
コード例 #2
0
 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;
 }