BlAuthoryRole.cs 749 B

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