phronCare/Models/Interfaces/IPhSQuoteRoleRepository.cs
Leandro Hernan Rojas 2014218ad0
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m20s
Update Quote and FormSeries Add
2025-04-27 02:19:29 -03:00

15 lines
410 B
C#

using Domain.Entities;
using Domain.Generics;
namespace Models.Interfaces
{
public interface IPhSQuoteRoleRepository
{
Task<EQuoteRole> AddAsync(EQuoteRole quoteRole);
Task DeleteAsync(int id);
Task<PagedResult<EQuoteRole>> GetAllAsync(int page = 1, int pageSize = 50);
Task<EQuoteRole?> GetByIdAsync(int id);
Task UpdateAsync(EQuoteRole quoteRole);
}
}