public Reply GetOne(Guid id)
 {
     return(_context.Reply.Where(ReplySpecs.GetOne(id)).FirstOrDefault());
 }
 public List <Reply> GetAllByQuestionAndStatusOfTrue(Guid id)
 {
     return(_context.Reply.Where(ReplySpecs.GetAllByQuestionAndStatusOfTrue(id)).ToList());
 }