Exemplo n.º 1
0
        public FieldBuilder SetType(string value, bool condition = true)
        {
            if (condition)
            {
                _type = TypeReferenceBuilder.New().SetName(value);
            }

            return(this);
        }
Exemplo n.º 2
0
 public FieldBuilder SetType(TypeReferenceBuilder typeReference)
 {
     _type = typeReference;
     return(this);
 }