8 lines
No EOL
213 B
C#
8 lines
No EOL
213 B
C#
using SurveyLib.Core.Models;
|
|
|
|
namespace SurveyLib.Core.Repositories;
|
|
|
|
public interface ICompletionRepository : IGenericRepository<Completion>
|
|
{
|
|
Task<IEnumerable<Completion>> GetBySurveyIdAsync(int surveyId);
|
|
} |