public void NotEquals()
        {
            var sut = new D2(new D1());
            var other = new D2(Mock.Of<ID>());

            sut.Should().NotBe(other);
        }
        public void Equals()
        {
            var sut = new D2(new D1());
            var other = new D2(new D1());

            sut.Should().Be(other);
        }