All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 6m18s
Quote Demo v1
10 lines
189 B
C#
10 lines
189 B
C#
using Domain.Entities;
|
|
|
|
namespace Models.Interfaces
|
|
{
|
|
public interface IPhSAdjustmentReasonRepository
|
|
{
|
|
Task<IEnumerable<EAdjustmentReason>> GetAllActiveAsync();
|
|
}
|
|
}
|