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.
20 lines
579 B
20 lines
579 B
2 years ago
|
using BBWY.Common.Models;
|
||
|
using BBWY.Server.Model.Dto;
|
||
|
using BBWY.Server.Model.Dto.Response.PurchaseOrderV2;
|
||
|
using Yitter.IdGenerator;
|
||
|
|
||
|
namespace BBWY.Server.Business
|
||
|
{
|
||
|
public class PurchaseOrderV2Business : BaseBusiness, IDenpendency
|
||
|
{
|
||
|
public PurchaseOrderV2Business(IFreeSql fsql, NLogManager nLogManager, IIdGenerator idGenerator) : base(fsql, nLogManager, idGenerator)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public ProductSkuWithSchemeResponse GetProductSkuAndSchemeList(SearchProductSkuAndSchemeRequest request)
|
||
|
{
|
||
|
return null;
|
||
|
}
|
||
|
}
|
||
|
}
|