|
|
|
using BBWY.Server.Model;
|
|
|
|
using Microsoft.Extensions.Caching.Memory;
|
|
|
|
using NLog;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace BBWY.Server.Business
|
|
|
|
{
|
|
|
|
public class TaoBaoBusiness : PlatformSDKBusiness
|
|
|
|
{
|
|
|
|
public TaoBaoBusiness(IMemoryCache memoryCache, NLogManager nLogManager) : base(memoryCache, nLogManager)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public override Enums.Platform Platform => Enums.Platform.淘宝;
|
|
|
|
}
|
|
|
|
}
|