using System; using System.Collections.Generic; using System.Linq; using System.Text; using CoreFS.CA06; using System.Data; using System.Collections; namespace Core.LgMes.Client.lgDbMgt { public interface IDbCommand { DataSet ExecuteReader(DbClientParam param); string ExecuteNonQuery(DbClientParam param); } }