private bool Equals(Architecture other)
 {
     return(Assemblies.Equals(other.Assemblies) && Namespaces.Equals(other.Namespaces) &&
            Types.Equals(other.Types));
 }
 public ObjectProviderCache(Architecture architecture)
 {
     _architecture = architecture;
     _cache        = new ConcurrentDictionary <int, object>();
 }