Guest User

Untitled

a guest
Mar 20th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. package com.github.ajanthan.pizza.shack.MenuService.dao;
  2.  
  3. import com.github.ajanthan.pizza.shack.MenuService.model.MenuItem;
  4. import org.springframework.data.repository.CrudRepository;
  5.  
  6. public interface MenuItemRepository extends CrudRepository<MenuItem, Long> {
  7. }
Add Comment
Please, Sign In to add comment