phronCare/Models/Interfaces/IPhSTaxConditionRepository.cs
Leandro Hernan Rojas 42e67d5600
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m18s
Update TaxCondition Endpoint in API
2025-04-10 16:14:53 -03:00

10 lines
232 B
C#

using Domain.Entities;
namespace Models.Interfaces
{
public interface IPhSTaxConditionRepository
{
Task<IEnumerable<ETaxCondition>> GetAllAsync();
Task<ETaxCondition?> GetByNameAsync(string name);
}
}