示例#1
0
 public BillProfile(Bill_Identifier bill_Identifier, List <PartialScore> neg_keywords, List <PartialScore> pos_keywords)
 {
     Identifier = bill_Identifier;
     Negative   = neg_keywords;
     Positive   = pos_keywords;
 }
示例#2
0
 public BillProfile(string path, List <PartialScore> neg_keywords, List <PartialScore> pos_keywords)
 {
     Identifier = new Bill_Identifier(path);
     Negative   = neg_keywords;
     Positive   = pos_keywords;
 }