Exemplo n.º 1
0
 public void Load(CCBTransaction p_obj)
 {
     this._ID          = p_obj.ID;
     this._Date        = p_obj.Date;
     this._Amount      = p_obj.Amount;
     this._Description = p_obj.Description;
     this._Category    = p_obj.Category;
     this._Account     = p_obj.Account;
     this._Jived       = p_obj.Jived;
     this._CheckNumber = p_obj.CheckNumber;
     this._Payee       = p_obj.Payee;
     this._Memo        = p_obj.Memo;
     this._User        = p_obj.User;
 }
Exemplo n.º 2
0
 public CCBTransaction(CCBTransaction p_obj)
 {
     Load(p_obj);
 }