feat(Repository): creado repositorio JPA para Recipe

parent 21c70227
package com.example.apprecetas.recipe.infrastructure.repository.jpa;
import org.springframework.data.jpa.repository.JpaRepository;
public interface RecipeRepositoryJpa extends JpaRepository<RecipeJpa, Long> {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment