18 lines
423 B
C#
18 lines
423 B
C#
using System.Data;
|
|
using WX.CRM.DAL.Base;
|
|
using WX.CRM.IBLL.Base;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.BLL.Base
|
|
{
|
|
|
|
public class BAS_ACTIONLOG_BL : DbContextRepository<BAS_ACTIONLOG>, IBAS_ACTIONLOG
|
|
{
|
|
private ACTIONLOG_DAL dal = new ACTIONLOG_DAL();
|
|
public DataSet CountActionLog(string stime, string etime)
|
|
{
|
|
return dal.CountActionLog(stime, etime);
|
|
}
|
|
}
|
|
}
|