59 lines
1.6 KiB
C#
59 lines
1.6 KiB
C#
using System;
|
|
using System.Data;
|
|
using WX.CRM.DAL.Wx;
|
|
using WX.CRM.IBLL.Wx;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.BLL.Wx
|
|
{
|
|
public class WX_BALANCE_BL : DbContextRepository<WX_BALANCE>, IWX_BALANCE
|
|
{
|
|
private readonly WX_COMMISSION_DAL _dal = new WX_COMMISSION_DAL();
|
|
public string CheckCommission()
|
|
{
|
|
return _dal.CheckCommission();
|
|
}
|
|
|
|
public string SaleUserCommissionBalance(DateTime month, decimal pOperator, string remark)
|
|
{
|
|
return _dal.SaleUserCommissionBalance(month, pOperator, remark);
|
|
}
|
|
|
|
public void SaleUserCommissionUnBalance(DateTime month, decimal pOperator)
|
|
{
|
|
_dal.SaleUserCommissionUnBalance(month, pOperator);
|
|
}
|
|
|
|
|
|
public DataSet CommissionBalanceReport(DateTime month)
|
|
{
|
|
return _dal.CommissionBalanceReport(month);
|
|
}
|
|
|
|
public DataSet GetSaleGrouperWageQuery(DateTime month)
|
|
{
|
|
return _dal.GetSaleGrouperWageQuery(month);
|
|
}
|
|
|
|
public DataSet GetSaleGrouperSiglenWageQuery(DateTime month)
|
|
{
|
|
return _dal.GetSaleGrouperSiglenWageQuery(month);
|
|
}
|
|
|
|
public DataSet GetUserYeJi(DateTime month, decimal? eid)
|
|
{
|
|
return _dal.GetUserYeJi(month, eid);
|
|
}
|
|
|
|
public DataSet GetUserTuiKuan(DateTime month, decimal? eid)
|
|
{
|
|
return _dal.GetUserTuiKuan(month, eid);
|
|
}
|
|
|
|
public DataSet GetUserYuLiu(DateTime month, decimal? eid)
|
|
{
|
|
return _dal.GetUserYuLiu(month, eid);
|
|
}
|
|
}
|
|
}
|