Esempio n. 1
0
 public TopicController(ITopicRepository topicRepository, IMapper mapper, ITopicFileRepository topicFileRepository)
 {
     this.topicRepository     = topicRepository;
     this.mapper              = mapper;
     this.topicFileRepository = topicFileRepository;
 }
Esempio n. 2
0
 public PlayFileController(ITopicFileRepository topicFileRepository, IMapper mapper)
 {
     this.topicFileRepository = topicFileRepository;
     this.mapper = mapper;
 }