예제 #1
0
 public static bool Get <T>(this BasicIocContainer_I container, out T result)
 {
     return(XBasicIoc.Get <T>(container, out result));
 }
예제 #2
0
 public static TPhenotype Get <TPhenotype, TGenotype>(this BasicIocContainer_I container)
     where TGenotype : TPhenotype
 {
     return(XBasicIoc.Get <TPhenotype, TGenotype>(container));
 }
예제 #3
0
 public static bool Get <TPhenotype, TGenotype>(this BasicIocContainer_I container, out TPhenotype phenotype)
     where TGenotype : TPhenotype
 {
     return(XBasicIoc.Get <TPhenotype, TGenotype>(container, out phenotype));
 }
예제 #4
0
 public static T Get <T>(this BasicIocContainer_I container)
 {
     return(XBasicIoc.Get <T>(container));
 }