2025-05-07 18:35:49 -03:00
|
|
|
|
using Models.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Models.Interfaces
|
2025-04-27 02:19:29 -03:00
|
|
|
|
{
|
|
|
|
|
|
public interface IPhSFormSeriesRepository
|
|
|
|
|
|
{
|
2025-05-07 18:35:49 -03:00
|
|
|
|
Task<PhSFormSeries?> GetByIdAsync(int formSeriesId);
|
2025-04-27 02:19:29 -03:00
|
|
|
|
Task<int> GetNextInternalNumberAsync(int formSeriesId);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|