mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-07 01:23:27 +08:00
### 1.4.1 开源社区版: 无 ### 0.3.0 专业版: 【新增】微信自定义交易组件增加【免审更新】功能。 【新增】微信自定义交易组件增加【上传品牌信息】功能。 【新增】微信自定义交易组件增加【品牌信息】审核回调验证功能。
44 lines
1.4 KiB
C#
44 lines
1.4 KiB
C#
/***********************************************************************
|
|
* Project: CoreCms
|
|
* ProjectName: 核心内容管理系统
|
|
* Web: https://www.corecms.net
|
|
* Author: 大灰灰
|
|
* Email: jianweie@163.com
|
|
* CreateTime: 2021/7/28 20:42:38
|
|
* Description: 暂无
|
|
***********************************************************************/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
using System.Threading.Tasks;
|
|
using CoreCms.Net.Configuration;
|
|
using CoreCms.Net.IRepository;
|
|
using CoreCms.Net.IRepository.UnitOfWork;
|
|
using CoreCms.Net.IServices;
|
|
using CoreCms.Net.Model.Entities;
|
|
using CoreCms.Net.Model.ViewModels.Basics;
|
|
using CoreCms.Net.Model.ViewModels.UI;
|
|
using SqlSugar;
|
|
|
|
|
|
namespace CoreCms.Net.Services
|
|
{
|
|
/// <summary>
|
|
/// 微信授权交互 接口实现
|
|
/// </summary>
|
|
public class WeChatAccessTokenServices : BaseServices<WeChatAccessToken>, IWeChatAccessTokenServices
|
|
{
|
|
private readonly IWeChatAccessTokenRepository _dal;
|
|
private readonly IUnitOfWork _unitOfWork;
|
|
|
|
public WeChatAccessTokenServices(IUnitOfWork unitOfWork, IWeChatAccessTokenRepository dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
_unitOfWork = unitOfWork;
|
|
}
|
|
|
|
}
|
|
}
|