BlAuthoryRole.cs 810 B

12345678910111213141516171819202122232425262728
  1. using ProjectBase.Data.BaseDAL;
  2. using SIASUN.Autopilot.BLL;
  3. using SIASUN.Autopilot.DAL.IDALSQL;
  4. using SIASUN.Autopilot.Model;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace SIASUN.Autopilot.BLL
  11. {
  12. public class BlAuthoryRole : BaseBLL<MoAuthoryRole>
  13. {
  14. private IDalAuthoryRole dalAuthoryRole;
  15. /// <summary>
  16. /// 构造函数
  17. /// </summary>
  18. public BlAuthoryRole() : base()
  19. {
  20. base.Init(this.GetType().FullName, System.Reflection.Assembly.GetExecutingAssembly().GetName().Name);
  21. dalAuthoryRole = baseDal as IDalAuthoryRole;
  22. dalAuthoryRole.OnOperationLog += new OperationLogEventHandler(BlLogOperation.OnOperationLog);
  23. }
  24. }
  25. }