deletions update

This commit is contained in:
Вячеслав 2025-05-20 15:59:55 +05:00
parent 6f8ef78577
commit 7bbcd07c39
10 changed files with 71 additions and 22 deletions

View file

@ -36,9 +36,15 @@ public class AnswerRepository : IAnswerRepository
await _context.SaveChangesAsync();
}
public async Task DeleteAsync(Answer entity)
public async Task DeleteAsync(int id)
{
_context.Answers.Remove(entity);
throw new NotImplementedException();
}
public async Task DeleteAsync(int questionId, int completionId)
{
await _context.Answers.Where(a => a.QuestionId == questionId && a.CompletionId == completionId)
.ExecuteDeleteAsync();
await _context.SaveChangesAsync();
}
}