12 lines
297 B
C#
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();
|
|
}
|
|
}
|