public async Task ShoulsReturnListWithPlannedLessonsForTutor()
        {
            var plannedLessons = await _tutorService.GetPlannedLessons(_tutorId);

            Assert.True(plannedLessons.CompletedWithSuccess);
            Assert.NotNull(plannedLessons.Result);
        }