public Album GetById(int id)
        {
            var album = _context.GetAlbum(id);

            return(album);
        }