Example #1
0
        public void GetValues(ref List <string> takenValues)
        {
#if DEBUG
            GeneralClass.CheckNotNull(takenValues);
#endif
            takenValues.Clear();
            takenValues.Add(ID.ToString());
            takenValues.Add(Number.ToString());
            takenValues.Add(Label.ToString());
        }
Example #2
0
        public void GetValues(ref List <string> takenValues)
        {
#if DEBUG
            GeneralClass.CheckNotNull(takenValues);
#endif
            takenValues.Clear();
            takenValues.Add(ID.ToString());
            takenValues.Add(NameOfTable.ToString());
            takenValues.Add(CommentOnTable.ToString());
            takenValues.Add(IfHidden.ToString());
            takenValues.Add(URL.ToString());
        }
Example #3
0
        public void FillProperties(ref List <string> myProperties)
        {
            #region CheckOfArguments
#if DEBUG
            GeneralClass.CheckNotNull(myProperties);
#endif
            #endregion
            List <string> ListOfProperties = new List <string>()
            {
                "ID", "NameOfTable", "CommentOnTable", "IfHidden", "URL"
            };
            myProperties.Clear();
            myProperties.AddRange(ListOfProperties);
        }
Example #4
0
        public void FillProperties(ref List <string> myProperties)
        {
            #region CheckOfArguments
#if DEBUG
            GeneralClass.CheckNotNull(myProperties);
#endif
            #endregion
            List <string> ListOfProperties = new List <string>()
            {
                "ID", "NameOfField", "IDType", "DefaultValue", "IfMandatory", "IfHidden", "IDTable", "IfDependent", "IDMasterField", "IfUnique", "IDConstraint", "Description"
            };
            myProperties.Clear();
            myProperties.AddRange(ListOfProperties);
        }
Example #5
0
        public void FillProperties(ref List <string> myProperties)
        {
            #region CheckOfArguments
#if DEBUG
            GeneralClass.CheckNotNull(myProperties);
#endif
            #endregion
            List <string> ListOfProperties = new List <string>()
            {
                "ID", "Number", "Label"
            };
            myProperties.Clear();
            myProperties.AddRange(ListOfProperties);
        }
Example #6
0
        public void FillProperties(ref List <string> myProperties)
        {
            #region CheckOfArguments
#if DEBUG
            GeneralClass.CheckNotNull(myProperties);
#endif
            #endregion
            List <string> ListOfProperties = new List <string>()
            {
                "ID", "NameOfType", "Format", "Parse", "IfEnum", "ValidationFunction", "DefaultValue"
            };
            myProperties.Clear();
            myProperties.AddRange(ListOfProperties);
        }
Example #7
0
        public void GetValues(ref List <string> takenValues)
        {
#if DEBUG
            GeneralClass.CheckNotNull(takenValues);
#endif
            takenValues.Clear();
            takenValues.Add(ID.ToString());
            takenValues.Add(NameOfType.ToString());
            takenValues.Add(Format.ToString());
            takenValues.Add(Parse.ToString());
            takenValues.Add(IfEnum.ToString());
            takenValues.Add(ValidationFunction.ToString());
            takenValues.Add(DefaultValue.ToString());
        }
Example #8
0
        public void GetValues(ref List <string> takenValues)
        {
#if DEBUG
            GeneralClass.CheckNotNull(takenValues);
#endif
            takenValues.Clear();
            takenValues.Add(ID.ToString());
            takenValues.Add(NameOfField.ToString());
            takenValues.Add(IDType.ToString());
            takenValues.Add(DefaultValue.ToString());
            takenValues.Add(IfMandatory.ToString());
            takenValues.Add(IfHidden.ToString());
            takenValues.Add(IDTable.ToString());
            takenValues.Add(IfDependent.ToString());
            takenValues.Add(IDMasterField.ToString());
            takenValues.Add(IfUnique.ToString());
            takenValues.Add(IDConstraint.ToString());
            takenValues.Add(Description.ToString());
        }