Ejemplo n.º 1
0
 public FactoryMap(FactoryAttribute attribute, object factory, MethodInfo method)
 {
     this.attribute = attribute;
     this.factory   = factory;
     this.method    = method;
     this.type      = FactoryMapType.Method;
 }
Ejemplo n.º 2
0
		public FactoryMap(FactoryAttribute attribute, object factory, MethodInfo method)
		{
			this.attribute = attribute;
			this.factory = factory;
			this.method = method;
			this.type = FactoryMapType.Method;
		}
Ejemplo n.º 3
0
 public FactoryMap(FactoryAttribute attribute, ConstructorInfo constructor)
 {
     this.attribute   = attribute;
     this.constructor = constructor;
     this.type        = FactoryMapType.Constructor;
 }
Ejemplo n.º 4
0
		public FactoryMap(FactoryAttribute attribute, ConstructorInfo constructor)
		{
			this.attribute = attribute;
			this.constructor = constructor;
			this.type = FactoryMapType.Constructor;
		}