45 lines
No EOL
1 KiB
C#
45 lines
No EOL
1 KiB
C#
using SurveyLib.Core.Models;
|
|
using SurveyLib.Core.Repositories;
|
|
using SurveyLib.Infrastructure.EFCore.Data;
|
|
|
|
namespace SurveyLib.Infrastructure.EFCore.Repositories;
|
|
|
|
public class CompletionRepository : ICompletionRepository
|
|
{
|
|
private readonly DataContext _context;
|
|
|
|
public CompletionRepository(DataContext context)
|
|
{
|
|
_context = context;
|
|
}
|
|
|
|
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();
|
|
}
|
|
} |