Rock.Apps.CheckScannerUtility.BatchPage.btnAddBatch_Click C# (CSharp) Méthode

btnAddBatch_Click() private méthode

Handles the Click event of the btnAddBatch control.
private btnAddBatch_Click ( object sender, RoutedEventArgs e ) : void
sender object The source of the event.
e System.Windows.RoutedEventArgs The instance containing the event data.
Résultat void
        private void btnAddBatch_Click( object sender, RoutedEventArgs e )
        {
            var financialBatch = new FinancialBatch { Id = 0, BatchStartDateTime = DateTime.Now.Date, CreatedByPersonAliasId = LoggedInPerson.PrimaryAliasId };
            UpdateBatchUI( financialBatch );
            ShowBatch( true );
        }