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