using ProjectBase.Data.BaseDAL; using SIMDP.DAL.IDALSQL; using SIMDP.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SIMDP.BLL { public class BlSchedulerJob : BaseBLL { private IDalSchedulerJob dalSchedulerJob; /// /// 构造函数 /// public BlSchedulerJob() : base() { base.Init(this.GetType().FullName, System.Reflection.Assembly.GetExecutingAssembly().GetName().Name); dalSchedulerJob = baseDal as IDalSchedulerJob; } } }