public void When_GetAllTaskForProject_Then_AllTaskReceivedForProjectReceived()
        {
            // Arrange & Act
            var result = Controller.GetAllTaskForProject(ProjectManagerFakeData.ProjectFakeData.Project1);

            // Assert
            Assert.IsNotNull(result);

            Assert.AreEqual(ProjectManagerFakeData.TaskFakeData.AllTasks.Where(x => x.ProjectId == ProjectManagerFakeData.ProjectFakeData.Project1.ProjectId).Count(), result.Count());
        }