public CostructorModellator()
        {
            _listVariables = new List<VariableModellator>();
            _xmlDocumentationClass = new XmlDocumentationModellator();

            Modifiers =ListAccessModifiers.PUBLIC.Value;
            _name = "costructor";
        }
 public functionModellator()
 {
     _listVariables = new List<VariableModellator>();
     _xmlDocumentationClass = new XmlDocumentationModellator();
     AccessModifier = ListAccessModifiers.PUBLIC.Value;
     _modifier = null;
     _name = "function";
 }
 public MethodModellatorNew()
 {
     _listVariables = new List<VariableModellator>();
     _xmlDocumentationClass = new XmlDocumentationModellator();
     AccessModifier = ListAccessModifiers.PUBLIC;
     _modifier = new Modifier();
     _name = "metthod";
     _body = String.Empty;
 }
        public PropertyModellator(String Name, String Type, String Summary, bool createGET, bool createSET)
            : this(Name, Type, createGET, createSET)
        {
            //this.Name = Name;
            //this.Type = Type;
            this._description = Summary;
            //this._createGET = createGET;
            //this._createSET = createSET;

            _xmlDocumentation = new XmlDocumentationModellator();
        }
 /// <summary>
 /// default contructor
 /// </summary>
 public PropertyModellator()
 {
     this._createGET = true;
     this._createSET = true;
     base.Name = null;
     base.Type = null;
     this._isNullable = true;
     _default = "null";
     _modifier = null ;
     _xmlDocumentation = new XmlDocumentationModellator();
 }
 public ClassModellatorOld(String OutputNameClass)
 {
     this._name = OutputNameClass;
     this._Description = null;
     this._accessModifier = "public";
     this._namespace = "Class";
     //this._pathToSave = "";
     this._listProperties = new List<PropertyModellator>();
     _listMethods = new List<functionModellator>();
     _xmlDocument = new XmlDocumentationModellator();
     _listUsing = new List<string>();
     this.setdefaultsUsing();
 }
 public ClassModellatorOld()
 {
     this._name = null;
     this._Description = null;
     this._accessModifier = ListAccessModifiers.PUBLIC.Value;
     this._namespace = "Class";
     //this._pathToSave = "";
     this._listProperties = new List<PropertyModellator>();
     this._listMethods = new List<functionModellator>();
     this._listFields = new List<FieldModelletor>();
     _xmlDocument = new XmlDocumentationModellator();
     _listUsing = new List<string>();
     this.setdefaultsUsing();
 }
 protected void reset()
 {
     _listMethods.Clear();
     _listProperties.Clear();
     _name =_namespace = _accessModifier = _Description = string.Empty;
     _xmlDocument = new XmlDocumentationModellator();
     this.setdefaultsUsing();
 }
 public FieldModelletor(String Type_Param, String Name_Param, string Description_Param)
     : base(Type_Param, Name_Param, Description_Param)
 {
     _xmlDocumentation = new XmlDocumentationModellator();
     _xmlDocumentation.Summary = Description_Param;
 }
 public FieldModelletor(String Type, String Name)
     : this()
 {
     _xmlDocumentation = new XmlDocumentationModellator();
 }
 public FieldModelletor()
     : base()
 {
     _xmlDocumentation = new XmlDocumentationModellator();
 }