/// <summary>
        /// Populate the data grid with information about workers with salary lower than given
        /// </summary>
        private void PopulateDataGridViewGetWorkersWithLowerSalary()
        {
            dataGridView.Rows.Clear();
            WorkerBusiness workerBusiness = new WorkerBusiness();

            decimal.TryParse(txtGet.Text, out decimal salary);
            var workersList = workerBusiness.GetWorkersWithLowerSalary(salary);

            DataPopulator(workersList);
        }