Files
lux/EgwCoreLib.Lux.Data/Services/Job/IPhaseService.cs
T
2026-03-20 19:03:32 +01:00

10 lines
183 B
C#

using EgwCoreLib.Lux.Data.DbModel.Job;
namespace EgwCoreLib.Lux.Data.Services.Job
{
public interface IPhaseService
{
Task<List<PhaseModel>> GetAllAsync();
}
}