10 lines
No EOL
311 B
C#
10 lines
No EOL
311 B
C#
using SurveyLib.Core.Models;
|
|
|
|
namespace SurveyLib.Core.Repositories;
|
|
|
|
public interface ISurveyRepository : IGenericRepository<Survey>
|
|
{
|
|
Task<Survey?> GetWithQuestionsAsync(int surveyId);
|
|
Task<Survey?> GetWithCompletionsAsync(int surveyId);
|
|
Task<IEnumerable<Survey>> FindByTitleAsync(string title);
|
|
} |