using MP.Data.DbModels; using System.Collections.Generic; using System.Threading.Tasks; namespace MP.Data.Repository.MpVoc { public interface IMpVocRepository { Task> ConfigGetAllAsync(); Task> LingueGetAllAsync(); Task> VocabolarioGetAllAsync(); } }