Beispiel #1
0
        public static bool DeleteProperty(long PropertyId)
        {
            SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider();
            var isDelete = sqlPropertyProvider.DeleteProperty(PropertyId);

            return(isDelete);
        }
        public static bool DeletePropertyWorkingDays(long id)
        {
            SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider();
            var isDelete = sqlPropertyProvider.DeleteProperty(id);

            return(isDelete);
        }
Beispiel #3
0
    public static bool DeleteProperty(int propertyID)
    {
        SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider();

        return(sqlPropertyProvider.DeleteProperty(propertyID));
    }
Beispiel #4
0
 public static bool DeleteProperty(int propertyID)
 {
     SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider();
     return sqlPropertyProvider.DeleteProperty(propertyID);
 }