public async Task GetUsersSampleSetsByUserIDAsync_ShouldReturnUserSampleSets()
        {
            int id = 2;
            ProjectDBContext projectDBContext = new ProjectDBContext(options);
            ProjectRepoDB    projectRepoDB    = new ProjectRepoDB(projectDBContext);

            var result = await projectRepoDB.GetUsersSampleSetsByUserIDAsync(id);

            Assert.Single(result);
        }