phronCare/Models/Interfaces/IPhSQuoteRepository.cs
Leandro Hernan Rojas 3d6af27e34
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m39s
Add Save Cascade Quote Insert
with Validations
2025-05-07 18:35:49 -03:00

10 lines
193 B
C#

using Domain.Entities;
namespace Models.Interfaces
{
public interface IPhSQuoteRepository
{
Task<string> CreateFullQuoteAsync(EQuoteHeader quote, int formSeriesId);
}
}