mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
17 lines
517 B
C#
17 lines
517 B
C#
using Acme.BookStore.Application.Contracts.Dtos.Book;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Yi.Framework.Ddd.Application.Contracts;
|
|
|
|
namespace Acme.BookStore.Application.Contracts.IServices
|
|
{
|
|
public interface IBookAppService :
|
|
IYiCrudAppService< //Defines CRUD methods
|
|
BookDto, //Used to show books
|
|
Guid, //Primary key of the book entity
|
|
PagedAndSortedResultRequestDto, //Used for paging/sorting
|
|
BookCreateUpdateDto> //Used to create/update a book
|
|
{
|
|
|
|
}
|
|
}
|