phronCare/Models/Interfaces/IPhSFormSeriesRepository.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

11 lines
240 B
C#

using Models.Models;
namespace Models.Interfaces
{
public interface IPhSFormSeriesRepository
{
Task<PhSFormSeries?> GetByIdAsync(int formSeriesId);
Task<int> GetNextInternalNumberAsync(int formSeriesId);
}
}