using Nirvana.Common.ApiBase;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace YBDevice.NApi.Application.BusinessClient.AccountInfo
{
///
/// 商户管理
///
public interface IBusinessService
{
///
/// 获取用户资料
///
///
Task GetUserInfoAsync();
///
/// 修改昵称
///
///
Task ChangeNickName(string name);
///
/// 头像上传
///
///
Task UploadImgAsync(string headimg);
///
/// 修改密码
///
///
Task ChangePwd(BusinessChangePwdDto businessChangePwdDto);
///
/// 退出登录
///
///
///
Task OutLogin(string sessionId);
Task CheckUserAsync(int userid);
}
}