Affecto.IdentityManagement.ApplicationServices.UserService.GetUser C# (CSharp) Метод

GetUser() публичный Метод

public GetUser ( string accountName, Affecto.IdentityManagement.Interfaces.Model.AccountType accountType ) : IUser
accountName string
accountType Affecto.IdentityManagement.Interfaces.Model.AccountType
Результат IUser
        public IUser GetUser(string accountName, AccountType accountType)
        {
            var mapper = new UserMapper();
            return mapper.Map(queryService.GetUser(accountName, (Querying.Data.AccountType)accountType));
        }