Completed Change to ReactJS

This commit is contained in:
2024-09-02 14:28:35 +00:00
parent 953edb3d0c
commit 6264778ea0
89 changed files with 4190 additions and 3866 deletions

View File

@ -21,3 +21,6 @@ class HouseService(BaseService):
def update(self, db: Session, house: HouseUpdate):
return self.repos.update(db=db, house=house)
def delete(self, db: Session, house_id: str):
return self.repos.delete(db=db, house_id=house_id)