コード例 #1
0
ファイル: TopicController.cs プロジェクト: chernikov/ArtAlley
 public TopicController(ITopicRepository topicRepository, IMapper mapper, ITopicFileRepository topicFileRepository)
 {
     this.topicRepository     = topicRepository;
     this.mapper              = mapper;
     this.topicFileRepository = topicFileRepository;
 }
コード例 #2
0
 public PlayFileController(ITopicFileRepository topicFileRepository, IMapper mapper)
 {
     this.topicFileRepository = topicFileRepository;
     this.mapper = mapper;
 }