/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
using System.Threading.Tasks;
using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.ViewModels.UI;
namespace CoreCms.Net.IServices
{
///
/// 银行卡信息 服务工厂接口
///
public interface ICoreCmsUserBankCardServices : IBaseServices
{
///
/// 我的银行卡列表
///
///
///
Task GetMyBankcardsList(int userId);
///
/// 我的银行卡列表
///
///
///
Task AddBankCards(CoreCmsUserBankCard entity);
///
/// 删除银行卡
///
///
///
///
Task Removebankcard(int id, int userId);
///
/// 获取用户默认银行卡信息
///
///
///
Task GetDefaultBankCard(int userId);
///
/// 获取银行卡组织信息
///
///
///
Task BankCardsOrganization(string cardCode);
///
/// 设置默认的银行卡
///
///
///
Task SetDefault(int userId, int id);
///
/// 获取银行卡信息
///
///
///
Task GetBankcardInfo(int userId, int id);
}
}