public static IMvxIoCProvider Initialise() { if (Instance != null) { return(Instance); } // create a new ioc container - it will register itself as the singleton var ioc = new MvxSimpleIoCContainer(); return(Instance); }
public ConstructingResolver(Type type, MvxSimpleIoCContainer parent) { _type = type; _parent = parent; }