17 lines
374 B
C#
17 lines
374 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.Core.Domain.Impl
|
|
{
|
|
public interface IDepartmentDomain : ITransientDependency
|
|
{
|
|
Task<List<DeptmentDto>> GetDeptments(string? appid = null);
|
|
|
|
Task<List<DeptmentDto>> GetDeptmentAll();
|
|
}
|
|
}
|