public T Exists <T>(int id) where T : class
        {
            var x = _context.Find <T>(id);

            return(x);
        }