Пример #1
0
 public List <WordTranslationModel> Get(int id)
 {
     if (id <= 0)
     {
         throw new ArgumentException("ID can't be negative or 0", "id");
     }
     return(wordTranslationMapper.MapRange(wordTranslationService.GetByWordSuiteID(id)));
 }