Files
mapo-core/MP.Data/Repository/MpVoc/IMpVocRepository.cs
T

16 lines
349 B
C#

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