IDalActionDirective.cs 308 B

1234567891011121314
  1. using ProjectBase.Data.BaseDAL;
  2. using SIASUN.Autopilot.Model;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace SIASUN.Autopilot.DAL.IDALSQL
  9. {
  10. public interface IDalActionDirective : IBaseDAL<MoActionDirective>
  11. {
  12. }
  13. }