10 lines
No EOL
299 B
C#
10 lines
No EOL
299 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<Survey?> FindByTitleAsync(string title);
|
|
} |