do not need

This commit is contained in:
rvsathe 2021-05-11 07:43:12 +05:30 committed by GitHub
parent 1c57f9d3e9
commit 5578045af2
1 changed files with 0 additions and 15 deletions

View File

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