IDALBeckhoffNode.cs 240 B

123456789101112
  1. using ProjectBase.Data.BaseDAL;
  2. using SIASUN.Autopilot.Model;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace SIASUN.Autopilot.DAL.IDALSQL
  6. {
  7. public interface IDALBeckhoffNode : IBaseDAL<MoBeckhoffNode>
  8. {
  9. }
  10. }