Exemplo n.º 1
0
        public object Clone()
        {
            TransactionAdapter clone = new TransactionAdapter((Transaction)Transaction.Clone(), GranitXDocument);

            return(clone);
        }
Exemplo n.º 2
0
 public bool IsBindedWith(XElement t)
 {
     return(Transaction.IsBindedWith(t));
 }
Exemplo n.º 3
0
 public TransactionAdapter(Transaction t, XDocument xdoc)
 {
     Transaction = t;
     GranitXmlToAdapterBinder.Bind(ref xdoc, this);
     GranitXDocument = xdoc;
 }
Exemplo n.º 4
0
 public int CompareTo(Transaction other)
 {
     return(Transaction.CompareTo(other));
 }
Exemplo n.º 5
0
 public TransactionAdapter()
 {
     Transaction = new Transaction();
 }