Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 4, 2019 18:44
Show Gist options
  • Save parzibyte/b5fe0db9c70e90c2fcb2ec3ffca3921d to your computer and use it in GitHub Desktop.
Save parzibyte/b5fe0db9c70e90c2fcb2ec3ffca3921d to your computer and use it in GitHub Desktop.
package me.parzibyte.sistemaventasspringboot;
import org.springframework.data.repository.CrudRepository;
public interface ProductosRepository extends CrudRepository<Producto, Integer> {
Producto findFirstByCodigo(String codigo);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment