All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m18s
10 lines
232 B
C#
10 lines
232 B
C#
using Domain.Entities;
|
|
|
|
namespace Models.Interfaces
|
|
{
|
|
public interface IPhSTaxConditionRepository
|
|
{
|
|
Task<IEnumerable<ETaxCondition>> GetAllAsync();
|
|
Task<ETaxCondition?> GetByNameAsync(string name);
|
|
}
|
|
} |