public void TestSerializingLambdaExpressions()
        {
            ISimpleService svc = Simply.Do[ConfigKey].Resolve <ISimpleService>();

            svc.Calculate((x, y) => x * 2 * y, 3, 7).Should().Be(42);
        }