All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m39s
with Validations
11 lines
240 B
C#
11 lines
240 B
C#
using Models.Models;
|
|
|
|
namespace Models.Interfaces
|
|
{
|
|
public interface IPhSFormSeriesRepository
|
|
{
|
|
Task<PhSFormSeries?> GetByIdAsync(int formSeriesId);
|
|
Task<int> GetNextInternalNumberAsync(int formSeriesId);
|
|
}
|
|
}
|