Midway ingkey/shopcat

This commit is contained in:
Tim Holloway 2022-01-04 10:18:05 -05:00
parent 9a88b81b7a
commit a01cf6ffa7

View File

@ -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> {
}