11 lines
279 B
C#
11 lines
279 B
C#
namespace EgwCoreLib.Lux.Data.Repository.Config
|
|
{
|
|
public interface IEnvirParamRepository
|
|
{
|
|
/// <summary>
|
|
/// Recupera l'elenco completo dei parametri ambiente dal database.
|
|
/// </summary>
|
|
Task<List<EnvirParamModel>> GetAllAsync();
|
|
}
|
|
}
|