Пример #1
0
 public MyOrdersPosition()
 {
     this._product = new MyProduct();
     this._price   = 0.0;
     this._count   = 0;
     this._order   = new MyOrder();
     this._id      = "-1";
 }
Пример #2
0
 public MyOrdersPosition(MyProduct Aproduct, double Aprice, int Acount,
                         MyOrder Aorder, string Aid)
 {
     this._product = Aproduct;
     this._price   = Aprice;
     this._count   = Acount;
     this._order   = Aorder;
     this._id      = Aid;
 }