/// <summary>
        /// Populate the data grid with information sorted by workers' both names in descending order
        /// </summary>
        private void PopulateDataGridViewSortWorkersByBothNamesDescending()
        {
            dataGridView.Rows.Clear();
            WorkerBusiness workerBusiness = new WorkerBusiness();
            var            workersList    = workerBusiness.SortWorkersByBothNamesDescending();

            DataPopulator(workersList);
        }