Example #1
0
        public BaseFactory()
        {
            _createdObjects = new List <object>();
            _loader         = new LoaderHelper(this);
            _propertyHelper = new PropertyHelper();

            _constructorHelper = new ConstructorHelper();
            _costructors       = new Constructors();
            _properties        = new Properties(_propertyHelper);

            _postCreationActions = new PostCreationActions();
        }
 public void Setup()
 {
     _constructorHelper = new ConstructorHelper();
 }