public IEnumerable <vmCountry> GetCountry(int companyID, int loggedUser, int pageNumber, int pageSize, int IsPaging)
        {
            IEnumerable <vmCountry> CountryList = null;

            try
            {
                CountryList = objDDLService.GetCountry(companyID, pageNumber, pageSize, IsPaging);
            }
            catch (Exception e)
            {
                e.ToString();
            }
            return(CountryList);
        }