File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
cqrs/src/main/java/com/iluwatar/cqrs/queries Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 11package com .iluwatar .cqrs .queries ;
22
3+ import java .math .BigInteger ;
34import java .util .List ;
45
56import com .iluwatar .cqrs .dto .AuthorDTO ;
@@ -9,12 +10,12 @@ public interface IQueryService {
910
1011 public abstract AuthorDTO getAuthorByUsername (String username );
1112
12- public abstract Double getBookPrice (String title );
13+ public abstract BookDTO getBook (String title );
1314
1415 public abstract List <BookDTO > getAuthorBooks (String username );
1516
16- public abstract long getAuthorBooksCount (String username );
17+ public abstract BigInteger getAuthorBooksCount (String username );
1718
18- public abstract long getAuthorsCount ();
19+ public abstract BigInteger getAuthorsCount ();
1920
2021}
You can’t perform that action at this time.
0 commit comments