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); } }
public virtual IField New(string Name, IRecord Owner, FieldAttributeCollection attributes) { throw new Exception("The method or operation is not implemented."); }