BlAuthoryGroup.cs 672 B

12345678910111213141516171819202122
  1. using ProjectBase.Data.BaseDAL;
  2. using SIASUN.Autopilot.DAL.IDALSQL;
  3. using SIASUN.Autopilot.Model;
  4. namespace SIASUN.Autopilot.BLL
  5. {
  6. public class BlAuthoryGroup : BaseBLL<MoAuthoryGroup>
  7. {
  8. private IDalAuthoryGroup dalAuthoryGroup;
  9. /// <summary>
  10. /// 构造函数
  11. /// </summary>
  12. public BlAuthoryGroup() : base()
  13. {
  14. base.Init(this.GetType().FullName, System.Reflection.Assembly.GetExecutingAssembly().GetName().Name);
  15. dalAuthoryGroup = baseDal as IDalAuthoryGroup;
  16. dalAuthoryGroup.OnOperationLog += new OperationLogEventHandler(BlLogOperation.OnOperationLog);
  17. }
  18. }
  19. }