All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m39s
with Validations
10 lines
193 B
C#
10 lines
193 B
C#
using Domain.Entities;
|
|
|
|
namespace Models.Interfaces
|
|
{
|
|
public interface IPhSQuoteRepository
|
|
{
|
|
Task<string> CreateFullQuoteAsync(EQuoteHeader quote, int formSeriesId);
|
|
}
|
|
}
|