using System; using Implab.Components; namespace Implab.ServiceHost.Test.Mock { public class BazFactory : IFactory { public Func IdGenerator { get; set; } Baz IFactory.Create() { return new Baz { Id = IdGenerator?.Invoke() ?? Guid.Empty }; } } }