예제 #1
0
파일: CashBox.cs 프로젝트: Mexahoid/CSF
 public CashBox()
 {
     MoneyBox = new Collections.MoneyList();
       Points = new Point[5] {
     new Point(60, 170),
     new Point(125, 170),
     new Point(170, 295),
       new Point(170, 465),
       new Point(60, 465)};
       AllMoneyCount = 0;
       Active = false;
 }
예제 #2
0
파일: CashBox.cs 프로젝트: Mexahoid/CSF
 public void FillMoney(int[] Nom)
 {
     MoneyBox = new Collections.MoneyList();
       MoneyBox.FillMoney(Nom);
 }
예제 #3
0
파일: CashBox.cs 프로젝트: Mexahoid/CSF
 public CashBox()
 {
     MoneyBox = new Collections.MoneyList();
       Active = false;
 }
예제 #4
0
 public void FillMoney(int[] Nom)
 {
     MoneyBox = new Collections.MoneyList();
     MoneyBox.FillMoney(Nom);
 }
예제 #5
0
 public CashBox()
 {
     MoneyBox = new Collections.MoneyList();
     Active   = false;
 }
예제 #6
0
파일: CashBox.cs 프로젝트: Mexahoid/CSF
 public void FillMoney()
 {
     MoneyBox = new Collections.MoneyList();
       MoneyBox.FillMoney();
 }