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