Skip to content

Instantly share code, notes, and snippets.

@diegosilva13
Created December 17, 2017 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegosilva13/895f52cab4e95b45c83acc180e75d738 to your computer and use it in GitHub Desktop.
Save diegosilva13/895f52cab4e95b45c83acc180e75d738 to your computer and use it in GitHub Desktop.
package com.coderef.delivery.repository;
import com.coderef.delivery.model.Order;
import org.springframework.data.repository.CrudRepository;
public interface OrderRepository extends CrudRepository<Order, Integer> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment