public void DeleteMany(IEnumerable <T> entities)
 {
     if (entities != null)
     {
         _context.RemoveRange(entities);
     }
 }