ComplianceServer/code/Hg.Internal.Domain/Impl/ICacheDomain.cs

15 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Zxd.Core.Shared.Dto;
namespace Hg.Internal.Domain.Impl
{
public interface ICacheDomain : IScopedDependency
{
Task<List<DeptmentDto>> GetDeptments(bool isdept=false);
}
}