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