Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 2m13s
10 lines
177 B
C#
10 lines
177 B
C#
using Domain.Entities;
|
|
|
|
namespace Core.Interfaces
|
|
{
|
|
public interface IAdjustmentReasonDom
|
|
{
|
|
Task<IEnumerable<EAdjustmentReason>> GetAllActiveAsync();
|
|
}
|
|
}
|