Esempio n. 1
0
 public static IServicesImplementationCollection FromThese(params Type[] types)
 {
     return(ServicesImplementation.FromThese((IEnumerable <Type>)types));
 }
Esempio n. 2
0
        public static IServicesImplementationCollection FromAssembly(string file)
        {
            Assembly assembly = Assembly.LoadFrom(file);

            return(ServicesImplementation.FromThese(assembly.GetTypes()));
        }
Esempio n. 3
0
 public static IServicesImplementationCollection FromAssembly(Assembly asm)
 {
     return(ServicesImplementation.FromThese(asm.GetTypes()));
 }