do not need

This commit is contained in:
rvsathe 2021-05-11 07:42:54 +05:30 committed by GitHub
parent 42abea54d8
commit 1c57f9d3e9
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
package com.baeldung.hexagonalPattern.ports;
import java.util.List;
import com.baeldung.hexagonalPattern.core.domain.Book;
public interface LibraryRepo {
public int insertBook(Book book);
public Book searchBook(String name);
public List<Book> getAllBooks();
}