예제 #1
0
파일: Sale.cs 프로젝트: Crampers/NxtGenPOS
 public void MakeLineItem(ProductDescription desc, int qty)
 {
     slItem.Add(new SalesLineItem(desc, qty));
 }
예제 #2
0
 public SalesLineItem(ProductDescription pcd, int qty)
 {
     this.qty = qty;
     this.pcd = pcd;
 }