示例#1
0
        public void InsertProperty(PropertyModel newProperty)
        {
            DaoProperty daProperty = new DaoProperty();

            newProperty.CreatedDate = System.DateTime.Now;
            daProperty.InsertProperty(newProperty);
        }
示例#2
0
        public List <AreaModel> GetArea(int locationId)
        {
            DaoProperty daProperty = new DaoProperty();

            return(daProperty.GetArea(locationId));
        }
示例#3
0
        public List <LocationModel> GetLocations()
        {
            DaoProperty daProperty = new DaoProperty();

            return(daProperty.GetLocation());
        }