Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
package me.parzibyte.sistemaventasspringboot;
import org.springframework.data.repository.CrudRepository;
public interface ProductosVendidosRepository extends CrudRepository<ProductoVendido, Integer> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment