//function to check the company id
        public bool CheckCompanyId(string companyId)
        {
            int cnt = int.Parse(companyObj.CheckCompanyId(companyId).ToString());

            if (cnt == 1)
            {
                return(false);
            }

            return(true);
        }