12 lines
278 B
C#
12 lines
278 B
C#
namespace EgwCoreLib.Lux.Data.Services.Config
|
|
{
|
|
public interface IEnvirParamService
|
|
{
|
|
/// <summary>
|
|
/// Elenco completo EnvirParam da DB
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<List<EnvirParamModel>> GetAllAsync();
|
|
}
|
|
}
|