예제 #1
0
 public static void Fill <T>(
     this IMvxNamedInstanceRegistry <T> registry, IMvxNamedInstanceRegistryFiller <T> filler, Type type)
     where T : notnull
 {
     filler.FillFrom(registry, type);
 }
예제 #2
0
        public static void Fill <T>(this IMvxNamedInstanceRegistry <T> registry, Type type)
        {
            var filler = Mvx.Resolve <IMvxNamedInstanceRegistryFiller <T> >();

            registry.Fill(filler, type);
        }
예제 #3
0
 public static void Fill <T>(this IMvxNamedInstanceRegistry <T> registry, IMvxNamedInstanceRegistryFiller <T> filler,
                             Assembly assembly)
     where T : notnull
 {
     filler.FillFrom(registry, assembly);
 }
예제 #4
0
        public static void Fill <T>(this IMvxNamedInstanceRegistry <T> registry, Assembly assembly)
        {
            var filler = Mvx.Resolve <IMvxNamedInstanceRegistryFiller <T> >();

            registry.Fill(filler, assembly);
        }