18 lines
435 B
C#
18 lines
435 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.Complaint.Domain.Impl
|
|
{
|
|
internal interface ICacheDomain : ITransientDependency
|
|
{
|
|
Task<List<DeptmentDto>> GetDeptments();
|
|
|
|
Task<List<DeptmentGroupDto>> GetDeptmentGroups();
|
|
|
|
Task<DeptmentGroupDto?> GetDeptmentGroupByDeptid(int? deptid);
|
|
}
|
|
} |