using FangYar.Model.TBL; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FangYar.BLL.TBL { public class SysOperationLogBLL { private static readonly FangYar.IDAL.TBL.SysOperationLogIDAL dal = FangYar.DALFactory.Factory.GetSysOperationLogDAL(); /// /// 添加一条记录 /// public bool Add(Tbl_Sys_Operation_Log_Model model,string conStr) { return dal.Add(model, conStr); } } }