6 lines
162 B
C#
6 lines
162 B
C#
public interface IQsofaService
|
|
{
|
|
Task<QsofaCurrentResponse> GetCurrentAsync(Guid encounterId);
|
|
Task<int> GetActiveCriteriaCountAsync(Guid encounterId);
|
|
}
|