コード例 #1
0
ファイル: TopicService.cs プロジェクト: yangganggood/ReportMS
 public TopicService(ITopicRepository topicRepository, ITaskRecordRepository taskRecordRepository)
 {
     _topicRepository = topicRepository;
     _taskRecordRepository = taskRecordRepository;
 }
コード例 #2
0
 public SubscriberService(IAttachmentTopicRepository attachmentTopicRepository,
     ITaskRecordRepository taskRecordRepository)
 {
     _attachmentTopicRepository = attachmentTopicRepository;
     _taskRecordRepository = taskRecordRepository;
 }
コード例 #3
0
ファイル: SubscriberService.cs プロジェクト: radtek/ReportMS
 public SubscriberService(IAttachmentTopicRepository attachmentTopicRepository,
                          ITaskRecordRepository taskRecordRepository)
 {
     _attachmentTopicRepository = attachmentTopicRepository;
     _taskRecordRepository      = taskRecordRepository;
 }
コード例 #4
0
ファイル: TopicService.cs プロジェクト: radtek/ReportMS
 public TopicService(ITopicRepository topicRepository, ITaskRecordRepository taskRecordRepository)
 {
     _topicRepository      = topicRepository;
     _taskRecordRepository = taskRecordRepository;
 }