public Genre GetById(int id)
        {
            var genres = _context.GetGenre(id);

            return(genres);
        }