Exemplo n.º 1
0
 public Field(FieldType type, string fieldTypeName, string name, string comment, string condition, int minVersion)
 {
     Type = type;
       FieldTypeName = fieldTypeName;
       Name = name.Substring(0, 1).ToUpper() + name.Substring(1);
       Comment = comment;
       Condition = condition;
       MinVersion = minVersion;
 }
Exemplo n.º 2
0
 public ListType(string name, FieldType listOf)
     : base(name)
 {
     ListOf = listOf;
 }