public Artist GetById(int id)
        {
            var artist = _context.GetArtist(id);

            return(artist);
        }