Files
lux/EgwCoreLib.Lux.Data/Services/Job/IPhaseService.cs
T

12 lines
260 B
C#

namespace EgwCoreLib.Lux.Data.Services.Job
{
public interface IPhaseService
{
/// <summary>
/// Elenco completo Phase da DB
/// </summary>
/// <returns></returns>
Task<List<PhaseModel>> GetAllAsync();
}
}