ComplianceServer/oldcode/IBLL/Wx/IWX_BONUSSALEUSER.cs

19 lines
633 B
C#

using System;
using System.Data;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Wx
{
public interface IWX_BONUSSALEUSER : IRepository<WX_BONUSSALEUSER>
{
DataSet GetAchievementWeek(DateTime week);
DataSet GetAchievementMonth(DateTime month);
DataSet GetOrderCountWeek(DateTime week);
DataSet GetOrderCountMonth(DateTime month);
DataSet GetOrderPayMax(DateTime month);
DataSet GetNewEntryOpenOrder();
DataSet GetGrouperBonusWeek(DateTime week);
bool SaveBonusSaleUser(decimal saveType, DateTime monthWeek, decimal operatorid, string operatorname);
}
}