Example #1
0
 public ReceiptForm()
 {
     InitializeComponent();
     _supplierBL = new SupplierBL();
     _brgBL = new BrgBL();
     presenter = new ReceiptPresenter(this);
 }
Example #2
0
 public ReceiptController(IHostingEnvironment hostingEnvironment, IReceipt receipt) : base(hostingEnvironment) // Constructor
 {
     rp = new ReceiptPresenter(receipt, hostingEnvironment);
 }