2 changed files with 32 additions and 1 deletions
@ -0,0 +1,29 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Yitter.IdGenerator; |
|||
|
|||
namespace BBWY.Server.Business |
|||
{ |
|||
public class OrderSkuSaleDetailSyncBusiness : BaseBusiness |
|||
{ |
|||
public OrderSkuSaleDetailSyncBusiness(IFreeSql fsql, NLogManager nLogManager, IIdGenerator idGenerator) : base(fsql, nLogManager, idGenerator) |
|||
{ |
|||
} |
|||
|
|||
public void SyncOrderSkuSaleDetail(long shopId, DateTime startDate, DateTime endDate) |
|||
{ |
|||
StatisticsOrderSkuSaleDaily(shopId, startDate, endDate); |
|||
} |
|||
|
|||
public void SyncAllShopOrderSkuSaleDetail(DateTime startDate, DateTime endDate) |
|||
{ |
|||
StatisticsOrderSkuSaleDaily(null, startDate, endDate); |
|||
} |
|||
|
|||
private void StatisticsOrderSkuSaleDaily(long? shopId, DateTime startDate, DateTime endDate) |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue