public SaleController()
 {
     this.className = "Sale";
     LoadFile();
     this.customerController = new CustomerController();
     quoteController         = new QuoteController();
 }
Esempio n. 2
0
 public SubProductForTransactionController()
 {
     this.className = "SubProductForTransaction";
     LoadFile();
     subProductController = new SubProductController();
     quoteController      = new QuoteController();
     saleController       = new SaleController();
 }