示例#1
0
 public FProbAttributeBLL(FProbAttributeBLL attr)
 {
     this.primaryKey    = attr.primaryKey;
     this.idAttribute   = attr.idAttribute;
     this.attributeName = attr.attributeName;
     this.fproDataType  = attr.fproDataType;
     this.description   = attr.description;
     this.fproSchema    = attr.fproSchema;
 }
示例#2
0
 public FProbRelationBLL(int IDRelation, string relationName, List <FProbTupleBLL> tuples, FProbSchemaBLL schema)
 {
     this.idRelation         = IDRelation;
     this.fproSchema         = schema;
     this.fproTuples         = tuples;
     this.relationName       = relationName;
     this.renameRelationName = string.Empty;
     this.listRenameRelation = new List <string>();
 }
示例#3
0
 public FProbAttributeBLL()
 {
     this.primaryKey    = false;
     this.idAttribute   = -1;
     this.attributeName = string.Empty;
     this.fproDataType  = new FProDataTypeBLL();
     this.description   = string.Empty;
     this.fproSchema    = new FProbSchemaBLL();
 }
示例#4
0
 public FProbRelationBLL(string relationName)
 {
     this.idRelation         = -1;
     this.fproSchema         = new FProbSchemaBLL();
     this.fproTuples         = new List <FProbTupleBLL>();
     this.relationName       = relationName;
     this.renameRelationName = string.Empty;
     this.listRenameRelation = new List <string>();
 }