/// <summary>
 /// Creator: Chuck Baxter
 /// Created: 2/19/2020
 /// Approver: Zach Behrensmeyer
 /// Approver:
 ///
 /// The method that calls the manager method to get the inactive data for the data grid
 /// </summary>
 /// <remarks>
 /// Updater:
 /// Updated:
 /// Update:
 /// </remarks>
 private void refreshInactiveData()
 {
     dgActiveAnimals.ItemsSource = _animalManager.RetrieveAnimalsByInactive();
     dgActiveAnimals.Columns.Remove(dgActiveAnimals.Columns[0]);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creator: Chuck Baxter
 /// Created: 2/19/2020
 /// Approver: Zach Behrensmeyer
 /// Approver:
 ///
 /// The method that calls the manager method to get the inactive data for the data grid
 /// </summary>
 /// <remarks>
 /// Updater: Chuck Baxter
 /// Updated: 3/6/2020
 /// Update: Corrected the data grid column headers
 /// Approver: Carl Davis, 3/6/2020
 /// </remarks>
 private void refreshInactiveData()
 {
     dgActiveAnimals.ItemsSource = _animalManager.RetrieveAnimalsByInactive();
 }