using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Zxd.Core.Shared.Dto; namespace Hg.Core.Domain.Impl { public interface IDepartmentDomain : ITransientDependency { Task> GetDeptments(string? appid = null); Task> GetDeptmentAll(); } }