16 lines
495 B
C#
16 lines
495 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using KonSoft.Admin.Dtos;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.Application.Services;
|
|
|
|
namespace KonSoft.Admin.IApplicationServices;
|
|
|
|
public interface IProductAppService : IApplicationService
|
|
{
|
|
Task CreateAsync(CreateProductDto input);
|
|
Task UpdateAsync(UpdateProductDto input);
|
|
Task DeleteAsync(Guid id);
|
|
Task<ProductDto> GetAsync(Guid id);
|
|
Task<PagedResultDto<ProductDto>> GetListAsync(PagedResultRequestDto input);
|
|
} |