9055eaf73c
- aggiunta pagina operatori - completato fix
40 lines
1.0 KiB
C#
40 lines
1.0 KiB
C#
using MP.Data.DbModels;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.Data.Repository.MpVoc
|
|
{
|
|
public interface IMpVocRepository
|
|
{
|
|
#region Public Methods
|
|
|
|
#if false
|
|
/// <summary>
|
|
/// Recupero elenco config
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<List<ConfigModel>> ConfigGetAllAsync();
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// recupero elenco lingue
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<List<LingueModel>> LingueGetAllAsync();
|
|
|
|
/// <summary>
|
|
/// Recupero tutte le voci dizionario, async
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<List<VocabolarioModel>> VocabolarioGetAllAsync();
|
|
|
|
/// <summary>
|
|
/// Recupero dizionario traduzioni x singola lingua
|
|
/// </summary>
|
|
/// <param name="lingua">Codice lingua</param>
|
|
/// <returns>Dizionario di traduzioni</returns>
|
|
Dictionary<string, string> VocabolarioGetLang(string lingua);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |