private void AddAccount()
        {
            ConfigureAccountWindow configureAccountWindow = new ConfigureAccountWindow
            {
                Top  = Application.Current.MainWindow.Top + 100,
                Left = Application.Current.MainWindow.Left + 100
            };

            configureAccountWindow.ShowDialog();
        }
        private void EditAccount(Account account)
        {
            ConfigureAccountWindow configureAccountWindow = new ConfigureAccountWindow
            {
                Top = Application.Current.MainWindow.Top + 100,
                Left = Application.Current.MainWindow.Left + 100
            };

            configureAccountWindow.ShowDialog();
        }