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, IBAS_ACTIONLOG { private ACTIONLOG_DAL dal = new ACTIONLOG_DAL(); public DataSet CountActionLog(string stime, string etime) { return dal.CountActionLog(stime, etime); } } }