feat(UserRepositoryJpa): creado repositorio JPA para User

parent 39b8212e
package com.example.apprecetas.infrastructure.repository.jpa;
import org.springframework.data.jpa.repository.JpaRepository;
public interface UserRepositoryJpa extends JpaRepository<UserJpa, 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