using Autofac;
using Rhea.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tiger.Model;
namespace Tiger.IBusiness
{
public interface ILogin
{
///
/// 获取登录信息
///
///
///
///
public Task GetLoginInfo(string token, bool Async = true);
///
/// 添加记录
///
///
///
///
public Task AddLOG_BS_LOGINAsync(SYS_BS_LOGIN parm, bool Async = true);
///
/// 登录
///
///
///
///
public Task> Login(ApiAction action, bool Async = true);
///
/// 切换据点
///
///
///
///
public Task SwitchOrgCode(string token, string org, string fty);
///
/// 注销
///
///
///
public Task Logout(string token);
}
}