public async Task GetSamplePlaylistsAsync_ShouldReturnSamplePlaylist()
        {
            //arrange
            ProjectDBContext projectDBContext = new ProjectDBContext(options);
            ProjectRepoDB    projectRepoDB    = new ProjectRepoDB(projectDBContext);

            //act
            var result = await projectRepoDB.GetSamplePlaylistsAsync();

            //assert
            Assert.Equal(2, result.Count);
        }