13 lines
358 B
C#
13 lines
358 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using KonSoft.Admin.Dtos;
|
|
|
|
namespace KonSoft.Admin.IApplicationServices;
|
|
|
|
public interface IServiceCategoryAppService
|
|
{
|
|
Task<ServiceCategoryDto> CreateAsync(CreateServiceCategoryDto input);
|
|
Task DeleteAsync(Guid id);
|
|
Task<List<ServiceCategoryDto>> GetTreeAsync();
|
|
} |