using System; namespace TheXamlGuy.Framework.Core { public interface IServiceCreator { object Create(Func creator, params object[] parameters); } }