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

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