public void AddService(Type serviceInterface, object serviceInstance) { Framework.AddSystemService(serviceInterface, new object[] { serviceInstance }); }
public void AddService <ServiceInterface>(object serviceInstance) { Framework.AddSystemService(typeof(ServiceInterface), new object[] { serviceInstance }); }