namespace IStation.DAL { /// /// /// public interface IHydraulicScada { /// /// /// ConnectionConfig ConnectionConfig { get; } /// /// /// bool Inserts(List list); /// /// /// bool BulkInserts(List list); /// /// /// bool DeleteAll(); /// /// /// List GetAll(); /// /// /// List GetByDate(DateTime start, DateTime end); } }