phronCare/Core/Interfaces/IAdjustmentReasonDom.cs.cs
Leandro Hernan Rojas 272f8330d7
Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 2m13s
Refactoring & Add Quotes
2025-05-13 12:08:38 -03:00

10 lines
177 B
C#

using Domain.Entities;
namespace Core.Interfaces
{
public interface IAdjustmentReasonDom
{
Task<IEnumerable<EAdjustmentReason>> GetAllActiveAsync();
}
}