Zxd.Core/code/Zxd.Core.Domain/Impl/IDeptmentDomain.cs

17 lines
383 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Zxd.Core.Domain.Dto.Wework;
namespace Zxd.Domain.Impl
{
public interface IDeptmentDomain : IScopedDependency
{
Task<List<DeptmentDto>> GetDeptments(bool? IsDept = null);
Task<DeptmentDto?> GetDeptmentByChannel(int channel);
}
}