예제 #1
0
 def get_all() -> List[Product]:
     return BaseService.get_all(Product)
예제 #2
0
 def get_all() -> List[Ingredient]:
     return BaseService.get_all(Ingredient)
예제 #3
0
파일: tag.py 프로젝트: Holmes555/fridgeapp
 def get_all() -> List[Tag]:
     return BaseService.get_all(Tag)
예제 #4
0
 def get_all() -> List[Recipe]:
     return BaseService.get_all(Recipe)