IDalSystemParameter.cs 286 B

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