crm.core/code/Crm.Core.Domain/Impl/IUserInfoDomain.cs

13 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Domain.Impl
{
public interface IUserInfoDomain : IScopedDependency
{
Task<List<UserInfoReq>> GetUserInfoByApi(string? appid, string? userid);
}
}