using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Zxd.Core.Shared.Dto; namespace Hg.Complaint.Domain.Impl { internal interface ICacheDomain : ITransientDependency { Task> GetDeptments(); Task> GetDeptmentGroups(); Task GetDeptmentGroupByDeptid(int? deptid); } }