Ejemplo n.º 1
0
 /// <summary>
 /// Constructs a new input form.
 /// </summary>
 /// <param name="rebh"></param>
 public InputForm(ICreateTransaction th, ISubmitRebate rebh, IProcessReturn reth, IGenerateRebate gch)
 {
     transaction_handler     = th;
     rebate_handler          = rebh;
     generate_checks_handler = gch;
     return_handler          = reth;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes the MainMenu class.
 /// </summary>
 public uxMainMenu(ICreateTransaction th, ISubmitRebate rebh, IProcessReturn reth, IGenerateRebate gch)
 {
     InitializeComponent();
     transaction_handler     = th;
     rebate_handler          = rebh;
     generate_checks_handler = gch;
     return_handler          = reth;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes the form.
 /// </summary>
 /// <param name="tr"></param>
 public uxCreateTransaction(ICreateTransaction tr)
 {
     InitializeComponent();
     transaction_handler = tr;
     ShowItems();
 }