forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeChatSubServices.cs
More file actions
34 lines (32 loc) · 1009 Bytes
/
WeChatSubServices.cs
File metadata and controls
34 lines (32 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using Blog.Core.Common;
using Blog.Core.Common.Helper;
using Blog.Core.IRepository.Base;
using Blog.Core.IRepository.UnitOfWork;
using Blog.Core.IServices;
using Blog.Core.Model;
using Blog.Core.Model.Models;
using Blog.Core.Model.ViewModels;
using Blog.Core.Services.BASE;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Blog.Core.Services
{
/// <summary>
/// WeChatSubServices
/// </summary>
public class WeChatSubServices : BaseServices<WeChatSub>, IWeChatSubServices
{
readonly IBaseRepository<WeChatSub> _dal;
readonly IUnitOfWork _unitOfWork;
readonly ILogger<WeChatSubServices> _logger;
public WeChatSubServices(IBaseRepository<WeChatSub> dal,IUnitOfWork unitOfWork, ILogger<WeChatSubServices> logger)
{
this._dal = dal;
base.BaseDal = dal;
this._unitOfWork = unitOfWork;
this._logger = logger;
}
}
}