示例#1
0
 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;
 }