コード例 #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());
        }