Exemple #1
0
 public TxFormat(TransactionType type, params Object[] args)
     : base(args)
 {
     TransactionType = type;
     AddCommonFields();
     Formats.Add(type, this);
 }
Exemple #2
0
 public static TxFormat GetTxFormat(TransactionType key)
 {
     if (key == null) return null;
     return Formats[key];
 }