IDalLogOperation.cs 253 B

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