/// <summary>
 /// Initializes a new instance of the <see cref="FrmCreateNewDatabase" /> class.
 /// </summary>
 public FrmCreateNewDatabase()
 {
     InitializeComponent();
     _dbOptionsPresenter      = new DBOptionsPresenter(this);
     _currencyPresenter       = new CurrencyPresenter(this);
     _accountPresenter        = new AccountPresenter(this);
     _payItemsPresenter       = new PayItemsPresenter(this);
     _payItemPresenter        = new PayItemPresenter(this);
     _autoBusinessPresenter   = new AutoBusinessPresenter(this);
     _autoBusinessesPresenter = new AutoBusinessesPresenter(this);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="FrmXtraCurrencyDetail"/> class.
 /// </summary>
 public FrmXtraCurrencyDetail()
 {
     InitializeComponent();
     _currencyPresenter = new CurrencyPresenter(this);
 }
 public CurrencyListForm()
 {
     InitializeComponent();
     _presenter  = new CurrencyPresenter(this);
     bindingLine = new BindingSource();
 }