using ProjectBase.Data.BaseDAL; using SIASUN.Autopilot.BLL; using SIASUN.Autopilot.DAL.IDALSQL; using SIASUN.Autopilot.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SIASUN.Autopilot.BLL { public class BlAuthoryRole : BaseBLL { private IDalAuthoryRole dalAuthoryRole; /// /// 构造函数 /// public BlAuthoryRole() : base() { base.Init(this.GetType().FullName, System.Reflection.Assembly.GetExecutingAssembly().GetName().Name); dalAuthoryRole = baseDal as IDalAuthoryRole; dalAuthoryRole.OnOperationLog += new OperationLogEventHandler(BlLogOperation.OnOperationLog); } } }