surveylib/SurveyLib.Infrastructure.EFCore/Repositories/CompletionRepository.cs
shept 4e3c3e6149 added reference to Core
added empty implementations of repositories
2025-03-14 22:41:53 +05:00

37 lines
No EOL
847 B
C#

using SurveyLib.Core.Models;
using SurveyLib.Core.Repositories;
namespace SurveyLib.Infrastructure.EFCore.Repositories;
public class CompletionRepository : ICompletionRepository
{
public Task<Completion>? GetByIdAsync(int id)
{
throw new NotImplementedException();
}
public Task<IEnumerable<Completion>> GetAllAsync()
{
throw new NotImplementedException();
}
public Task AddAsync(Completion entity)
{
throw new NotImplementedException();
}
public Task UpdateAsync(Completion entity)
{
throw new NotImplementedException();
}
public Task DeleteAsync(Completion entity)
{
throw new NotImplementedException();
}
public Task<IEnumerable<Completion>> GetBySurveyIdAsync(int surveyId)
{
throw new NotImplementedException();
}
}