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.
21 lines
478 B
21 lines
478 B
2 years ago
|
using BBWYB.Common.Log;
|
||
|
using BBWYB.Common.Models;
|
||
|
using BBWYB.Server.Model.Db;
|
||
|
using FreeSql;
|
||
|
using Yitter.IdGenerator;
|
||
|
|
||
|
namespace BBWYB.Server.Business
|
||
|
{
|
||
|
public class DataRepairBusiness : BaseBusiness, IDenpendency
|
||
|
{
|
||
|
public DataRepairBusiness(IFreeSql fsql, NLogManager nLogManager, IIdGenerator idGenerator) : base(fsql, nLogManager, idGenerator)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public void RepairPurchaseExpressOrder()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|