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