Ejemplo n.º 1
0
 def get_all() -> List[Product]:
     return BaseService.get_all(Product)
Ejemplo n.º 2
0
 def get_all() -> List[Ingredient]:
     return BaseService.get_all(Ingredient)
Ejemplo n.º 3
0
 def get_all() -> List[Tag]:
     return BaseService.get_all(Tag)
Ejemplo n.º 4
0
 def get_all() -> List[Recipe]:
     return BaseService.get_all(Recipe)