using Casic.Birmm.RbFreqStandMeasure.R_DataBase.Dto; 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 DetectionService { int add(long deviceId, string frequency, string detecItemType); List<DetectionDto> search(long deviceId, string detectionType, string startTime, string endTime); } }