public virtual async Task <T> GetByIdAsync(int id)
 {
     return(await _quizDbContext.Set <T>().FindAsync(id));
 }