Zxd.Core/code/Zxd.Crm.Domain/Impl/ICacheDomain.cs

21 lines
505 B
C#

using DG.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Zxd.Crm.Domain.Dto;
namespace Zxd.Crm.Domain.Impl
{
public interface ICacheDomain : ITransientDependency
{
Task<string> GetValueParameter(string key);
Task<List<DeptMentReturnModel>> GetDeptMapList();
Task AddDeptMapInfo(List<DeptMentReturnModel> dept);
Task UpdateDeptMapInfo(List<DeptMentReturnModel> deptList);
}
}