BlBeckhoffNode.cs 676 B

123456789101112131415161718192021222324
  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 BlBeckhoffNode: BaseBLL<MoBeckhoffNode>
  7. {
  8. private IDALBeckhoffNode dalBeckhoffNode;
  9. /// <summary>
  10. /// 构造函数
  11. /// </summary>
  12. public BlBeckhoffNode() : base()
  13. {
  14. base.Init(this.GetType().FullName, System.Reflection.Assembly.GetExecutingAssembly().GetName().Name);
  15. dalBeckhoffNode = baseDal as IDALBeckhoffNode;
  16. dalBeckhoffNode.OnOperationLog += new OperationLogEventHandler(BlLogOperation.OnOperationLog);
  17. }
  18. }
  19. }