Files
lux/EgwCoreLib.Lux.Data/Services/Production/IProductionPlantService.cs
T

12 lines
297 B
C#

namespace EgwCoreLib.Lux.Data.Services.Production
{
public interface IProductionPlantService
{
/// <summary>
/// Elenco completo ProductionPlant da DB
/// </summary>
/// <returns></returns>
Task<List<ProductionPlantModel>> GetAllAsync();
}
}