IBookAppService.cs 502 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using Volo.Abp.Application.Dtos;
  5. using Volo.Abp.Application.Services;
  6. using Business.BookManagement.Dto;
  7. namespace Business.BookManagement
  8. {
  9. public interface IBookAppService : IApplicationService
  10. {
  11. Task<BookDto> Get(Guid id);
  12. Task<PagedResultDto<BookDto>> GetAll(GetBookInputDto input);
  13. Task<BookDto> CreateOrUpdate(CreateOrUpdateBookDto input);
  14. Task Delete(List<Guid> ids);
  15. }
  16. }