public int InsertQueueForWashing(int job)
        {
            if (objCarWashDaoService == null)
            {
                objCarWashDaoService = new CarWashDaoImp();
            }

            return(objCarWashDaoService.InsertQueueForWashing(job));
        }