Esempio n. 1
0
        public bool IsRegistedHouse(string HouseId)
        {
            if (string.IsNullOrEmpty(HouseId))
            {
                return(false);
            }
            FC_CG_Data cgData = new FC_CG_Data();

            return(cgData.GetIsRegistedHouse(HouseId));
        }
Esempio n. 2
0
        public bool IsRegistedBuild(string buildingId)
        {
            if (string.IsNullOrEmpty(buildingId))
            {
                return(false);
            }
            FC_CG_Data cgData = new FC_CG_Data();

            return(cgData.GetIsRegistedBuilding(buildingId));
        }
Esempio n. 3
0
        public DataSet GetFirstRegistedInfoByHouseId(string HouseId)
        {
            Guid Gh; string sh;

            if (!Guid.TryParse(HouseId, out Gh))
            {
                sh = HouseId;
            }
            else
            {
                sh = Gh.ToString();
            }
            FC_CG_Data cgData = new FC_CG_Data();

            return(cgData.GetFirstRegistedInfo(sh));
        }