Ejemplo n.º 1
0
        public DbUnit(string Name, IRecord Owner, FieldAttributeCollection attributes)
        {
            name       = Name;
            this.owner = Owner;
            isNull     = true;

            this.attributes = attributes;

            substituteName = this.attributes.Get(typeof(SubstituteAttribute)) as SubstituteAttribute;
            if (substituteName == null)
            {
                substituteName = new SubstituteAttribute(name);
                this.attributes.Add(substituteName);
            }
        }
Ejemplo n.º 2
0
 public virtual IField New(string Name, IRecord Owner, FieldAttributeCollection attributes)
 {
     throw new Exception("The method or operation is not implemented.");
 }