private void WorkerInspactionDriver()
        {
            LogEr.Logerr("Info1", "Start Servse WorkParser Inspaction", "WorkerInspactionDriver", DateTime.Now.ToShortTimeString());
            int horseInmMiliSeconds = 60000 * 60;

            Task.Run(() =>
            {
                while (true)
                {
                    try
                    {
                        LogEr.Logerr("Info1", "Check Time", "WorkerInspactionDriver", DateTime.Now.ToShortTimeString());
                        List <Driver> drivers = sqlCommandParser.GetDriverInDb();
                        if (CheckTodayTime() && drivers != null)
                        {
                            RefreshInspectionTodayTimeDriver(drivers);
                        }
                        if (CheckTime() && drivers != null)
                        {
                            RefreshInspectionTimeDriver(drivers);
                        }
                        Thread.Sleep(horseInmMiliSeconds);
                    }
                    catch
                    {
                        LogEr.Logerr("Info1", "Error", "WorkerInspactionDriver", DateTime.Now.ToShortTimeString());
                    }
                }
            }).GetAwaiter().GetResult();
        }