예제 #1
0
 def updatePlace(self, newPlace):
     with  getSession() as session:
         place = Place.updateFormDict(session, newPlace)
         session.commit()
         return place.id
예제 #2
0
 def createPlace(self, newPlace):
     with  getSession() as session:
         place = Place.insertFormDict(session, newPlace)
         session.commit()
         return place.ID