namespace Hotline.Settings { public interface ISystemAreaDomainService { Task> GetAreaTree(); Task AddArea(SystemArea model,CancellationToken cancellationToken); Task ModifyArea(SystemArea model, CancellationToken cancellationToken); Task GetArea(string id, CancellationToken cancellationToken); Task DelArea(string id,CancellationToken cancellationToken); Task GenerateNewAreaCodeAsync(string parentId, CancellationToken cancellationToken); } }