/// <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; }
/// <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; }
/// <summary> /// Initializes the form. /// </summary> /// <param name="rh"></param> public uxProcessReturn(IProcessReturn rh) { InitializeComponent(); return_handler = rh; }