product
This commit is contained in:
		| @ -1,9 +1,7 @@ | ||||
| using KonSoft.Admin.Dtos; | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
| using System.Threading.Tasks; | ||||
| using Volo.Abp.Application.Dtos; | ||||
| using Volo.Abp.Application.Services; | ||||
|  | ||||
| namespace KonSoft.Admin.IApplicationServices | ||||
| @ -22,5 +20,9 @@ namespace KonSoft.Admin.IApplicationServices | ||||
|         Task CompleteServiceAsync(Guid orderId); | ||||
|         Task ConfirmAsync(Guid orderId); | ||||
|         Task CancelAsync(Guid orderId, string reason); | ||||
|         Task DeleteAsync(params Guid[] ids); | ||||
|         Task EditAsync(OrderDto input); | ||||
|         Task<OrderDto> GetAsync(Guid id); | ||||
|         Task<PagedResultDto<OrderDto>> GetListAsync(PagedResultRequestDto input); | ||||
|     } | ||||
| } | ||||
|  | ||||
| @ -0,0 +1,17 @@ | ||||
| using KonSoft.Admin.Dtos; | ||||
| using System; | ||||
| using System.Threading.Tasks; | ||||
| using Volo.Abp.Application.Dtos; | ||||
| using Volo.Abp.Application.Services; | ||||
|  | ||||
| namespace KonSoft.Admin.IApplicationServices | ||||
| { | ||||
|     public interface IProductService: IApplicationService | ||||
|     { | ||||
|         Task CreateAsync(CreateProductDto input); | ||||
|         Task UpdateAsync(UpdateProductDto input); | ||||
|         Task DeleteAsync(Guid id); | ||||
|         Task<ProductDto> GetAsync(Guid id); | ||||
|         Task<PagedResultDto<ProductDto>> GetListAsync(PagedResultRequestDto input); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user