7 changed files with 28 additions and 7 deletions
@ -1,10 +1,14 @@ |
|||||
using System; |
using Microsoft.Extensions.Caching.Memory; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Text; |
using System.Text; |
||||
|
|
||||
namespace BBWY.Server.Business |
namespace BBWY.Server.Business |
||||
{ |
{ |
||||
internal class PDDBusiness |
public class PDDBusiness : PlatformSDKBusiness |
||||
{ |
{ |
||||
|
public PDDBusiness(IMemoryCache memoryCache) : base(memoryCache) |
||||
|
{ |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,10 +1,17 @@ |
|||||
using System; |
using BBWY.Server.Model; |
||||
|
using Microsoft.Extensions.Caching.Memory; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Text; |
using System.Text; |
||||
|
|
||||
namespace BBWY.Server.Business |
namespace BBWY.Server.Business |
||||
{ |
{ |
||||
internal class TaoBaoBusiness |
public class TaoBaoBusiness : PlatformSDKBusiness |
||||
{ |
{ |
||||
|
public override Enums.Platform Platform => Enums.Platform.淘宝; |
||||
|
|
||||
|
public TaoBaoBusiness(IMemoryCache memoryCache) : base(memoryCache) |
||||
|
{ |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
Loading…
Reference in new issue