public async Task PhoneShouldNotExist()
        {
            await using (var context = new DbContextFactory().CreateContext())
            {
                var service = new UserServiceFactory().Create(context);

                var result = await service.PhoneExists("1111111111");

                result.Should().BeFalse();
            }
        }