Midway ingkey/shopcat
This commit is contained in:
parent
9a88b81b7a
commit
a01cf6ffa7
|
@ -0,0 +1,19 @@
|
|||
package com.mousetech.gourmetj.persistence.dao;
|
||||
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.mousetech.gourmetj.persistence.model.Ingredient;
|
||||
|
||||
/**
|
||||
* JpaRepository for Shoppind Categories, which relate ManyToOne to Ingredient.
|
||||
* Service method is @see RecipeService
|
||||
*
|
||||
* @author timh
|
||||
* @since Dec 28, 2021
|
||||
*/
|
||||
|
||||
@Repository
|
||||
public interface IngredientRepository
|
||||
extends JpaRepository<Ingredient, Long> {
|
||||
}
|
Loading…
Reference in New Issue
Block a user