|
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);
|
|
}
|
|
} |