Пример #1
0
 public TopicController(ITopicRepo topicRepo, IMapper mapper)
 {
     _mapper    = mapper;
     _topicRepo = topicRepo;
 }
Пример #2
0
 public TopicsController(NewAndNotificationContext context, ITopicRepo repository, IMapper mapper)
 {
     _context    = context;
     _repository = repository;
     _mapper     = mapper;
 }
Пример #3
0
 public TopicService(ITopicRepo topicRepo)
 {
     this.topicRepo = topicRepo;
 }