7 lines
129 B
C#
7 lines
129 B
C#
namespace LibraryApp.Domain.Services;
|
|
|
|
public interface IBookCountReportPrinter
|
|
{
|
|
Task PrintAsync(BookCountReport report);
|
|
}
|