using Casic.Birmm.RbFreqStandMeasure.R_DataBase.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Casic.Birmm.RbFreqStandMeasure.R_DataBase.Service { interface CounterCheckParamService { int add(string soOutDelay, string soEleFrequency, string soEleAddValue, string soEleAlarm, string freThreshold1, string freThreshold2, string freEleAddValue, string cycThreshold1, string cycThreshold2, string cycEleAddValue); int update(int id,string soOutDelay, string soEleFrequency, string soEleAddValue, string soEleAlarm, string freThreshold1, string freThreshold2, string freEleAddValue, string cycThreshold1, string cycThreshold2, string cycEleAddValue); CounterCheckParam getCounterCheckParams(); } }