您可以使用Callback(Action)方法访问传递给模拟调用的参数:
Callback(Action)
mockMyBusinessLogic .Setup(x => x.Apply(It.IsAny()) .Callback(r => r.Success = true);