| 1234567891011121314151617181920212223 | using OTSCLRINTERFACE;using OTSDataType;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace OTSModelSharp.ServiceCenter{    public interface IClassifyEngine    {        IClassifyEngine GetParticleEngine(string libName);        double IfNeedMaxEDS(COTSParticleClr particle);        IClassifyEngine GetCurveCompareEngine(string libName);        IClassifyEngine GetIncClassifyEngine();        bool Classify(COTSParticleClr particle);        bool ClassifyIncA(COTSParticleClr particle,int steelTech);    }}
 |