phronCare/Models/Interfaces/IPhSFormSeriesRepository.cs

8 lines
157 B
C#
Raw Normal View History

2025-04-27 02:19:29 -03:00
namespace Models.Interfaces
{
public interface IPhSFormSeriesRepository
{
Task<int> GetNextInternalNumberAsync(int formSeriesId);
}
}