/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System.Threading.Tasks;
using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.ViewModels.UI;
namespace CoreCms.Net.IServices
{
///
/// 用户地址表 服务工厂接口
///
public interface ICoreCmsUserShipServices : IBaseServices
{
///
/// 事务重写异步插入方法
///
///
///
Task InsertAsync(CoreCmsUserShip entity);
///
/// 重写异步更新方法方法
///
///
///
Task UpdateAsync(CoreCmsUserShip entity);
}
}