SecVmstDal.cs 358 B

123456789101112131415161718192021
  1. using Cksoft.Data;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace DllEapDal
  6. {
  7. public class SecVmstDal
  8. {
  9. public IDatabase CurrDb;
  10. public SecVmstDal(IDatabase db)
  11. {
  12. CurrDb = db;
  13. }
  14. public void Backup()
  15. {
  16. //string sql="select "
  17. }
  18. }
  19. }