コード例 #1
0
ファイル: CremaDataRow.cs プロジェクト: sedrion/Crema
 public void SetAttributeError(CremaAttribute attribute, string error)
 {
     this.row.SetColumnError(attribute.InternalAttribute, error);
 }
コード例 #2
0
ファイル: InternalAttribute.cs プロジェクト: teize001/Crema
 public InternalAttribute(CremaAttribute target, string attributeName, Type dataType)
     : this(attributeName, dataType)
 {
     base.Target = target;
 }