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

13 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Domain.Impl
{
public interface IDeptmentDomain : IScopedDependency
{
Task<List<DeptmentDto>> GetDeptments();
}
}