/// <summary>
        /// Populate the data grid with information sorted by workers' first name in ascending order
        /// </summary>
        private void PopulateDataGridViewSortWorkersByFirstNameAscending()
        {
            dataGridView.Rows.Clear();
            WorkerBusiness workerBusiness = new WorkerBusiness();
            var            workersList    = workerBusiness.SortWorkersByFirstNameAscending();

            DataPopulator(workersList);
        }