Esempio n. 1
0
 def create_location(self, **kwargs):
     return Location.create(parent=self, **kwargs)
Esempio n. 2
0
 def get_locations(self, **kwargs):
     return Location.get_all(parent=self, **kwargs)
Esempio n. 3
0
 def get_location(self, id):
     return Location.get(parent=self, id=id)
Esempio n. 4
0
 def get_locations(self):
     return Location.get_all(parent=self)