38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
using System;
|
|
using System.Data;
|
|
using WX.CRM.DAL.TS;
|
|
using WX.CRM.IBLL.TS;
|
|
|
|
namespace WX.CRM.BLL.TS
|
|
{
|
|
public class WX_TSADDPICI_BL : IWX_TSADDPICI
|
|
{
|
|
WX_TSADDPICI_DAL wx_TsAddPici_DAL = new WX_TSADDPICI_DAL();
|
|
|
|
|
|
|
|
public DataTable TsaddpicihisByDay(DateTime? beginTime, DateTime? endTime, decimal groupId, decimal deptId)
|
|
{
|
|
return wx_TsAddPici_DAL.TsaddpicihisByDay(beginTime, endTime, groupId, deptId);
|
|
}
|
|
|
|
|
|
public DataTable GetUserTsaddpicihisByDay(DateTime? beginTime, DateTime? endTime, decimal groupId, decimal? type)
|
|
{
|
|
return wx_TsAddPici_DAL.GetUserTsaddpicihisByDay(beginTime, endTime, groupId, type);
|
|
}
|
|
|
|
public DataTable GetDismissUserList(DateTime? beginTime, DateTime? endTime, decimal groupId, decimal dept)
|
|
{
|
|
return wx_TsAddPici_DAL.GetDismissUserList(beginTime, endTime, groupId, dept);
|
|
}
|
|
|
|
public DataTable GetSaleUserList(decimal groupId, decimal deptid)
|
|
{
|
|
return wx_TsAddPici_DAL.GetSaleUserList(groupId, deptid);
|
|
}
|
|
}
|
|
|
|
|
|
}
|