using DTO; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DTOToEntity { public interface IVocabularyService : IService { Task> GetByLangue(int index, int count, string langue); Task AddTranslationToVocabulary(string vocabId, long translateId); } }