31 lines
931 B
C#
31 lines
931 B
C#
|
|
using DouyinApi.Common;
|
||
|
|
using DouyinApi.Common.Helper;
|
||
|
|
using DouyinApi.IRepository.Base;
|
||
|
|
using DouyinApi.IServices;
|
||
|
|
using DouyinApi.Model;
|
||
|
|
using DouyinApi.Model.Models;
|
||
|
|
using DouyinApi.Model.ViewModels;
|
||
|
|
using DouyinApi.Services.BASE;
|
||
|
|
using Microsoft.Extensions.Logging;
|
||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using DouyinApi.Repository.UnitOfWorks;
|
||
|
|
|
||
|
|
namespace DouyinApi.Services
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// WeChatCompanyServices
|
||
|
|
/// </summary>
|
||
|
|
public class WeChatCompanyServices : BaseServices<WeChatCompany>, IWeChatCompanyServices
|
||
|
|
{
|
||
|
|
readonly IUnitOfWorkManage _unitOfWorkManage;
|
||
|
|
readonly ILogger<WeChatCompanyServices> _logger;
|
||
|
|
public WeChatCompanyServices(IUnitOfWorkManage unitOfWorkManage, ILogger<WeChatCompanyServices> logger)
|
||
|
|
{
|
||
|
|
this._unitOfWorkManage = unitOfWorkManage;
|
||
|
|
this._logger = logger;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|