public WordsController(IWordsService wordsService, IMeaningService meaningService, ISentenceService sentenceService, IMapper mapper)
 {
     this.wordsService    = wordsService;
     this.meaningService  = meaningService;
     this.sentenceService = sentenceService;
     this.mapper          = mapper;
 }
Beispiel #2
0
 public MeaningController()
 {
     meaningService = new MeaningService();
 }