You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
951 B
31 lines
951 B
using Tiobon.Core.Common;
|
|
using Tiobon.Core.Common.Helper;
|
|
using Tiobon.Core.IRepository.Base;
|
|
using Tiobon.Core.IServices;
|
|
using Tiobon.Core.Model;
|
|
using Tiobon.Core.Model.Models;
|
|
using Tiobon.Core.Model.ViewModels;
|
|
using Tiobon.Core.Services.BASE;
|
|
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Tiobon.Core.Repository.UnitOfWorks;
|
|
|
|
namespace Tiobon.Core.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;
|
|
}
|
|
|
|
}
|
|
} |