Ejemplo n.º 1
0
 public static System.Collections.Generic.List <Entity.Trending.EtyDataLogDPTrend> GetAllOPCDataPointsTSS(
     OPCSampleGrpConfig.Model.OPCDataSelectorModel target,
     System.String opcServerName, System.String filterString)
 {
     System.Collections.Generic.List <Entity.Trending.EtyDataLogDPTrend> etylist = new System.Collections.Generic.List <Entity.Trending.EtyDataLogDPTrend>();
     Entity.Trending.EtyDataLogDPTrend datapoint = new Entity.Trending.EtyDataLogDPTrend();
     datapoint.OPCDataPointName = "testing";
     etylist.Add(datapoint);
     return(etylist);
 }
Ejemplo n.º 2
0
        public static System.Boolean UpdateDataPointDBMSS(
            OPCSampleGrpConfig.Model.OPCDataSelectorModel target,
            Entity.Trending.EtyDataLogDPTrend etyDataPoint)
        {
            object result;

            if (TestSpecificStubsUtil.RunTestSpecificStub(System.Reflection.MethodBase.GetCurrentMethod(), new object[] { target, etyDataPoint }, out result))
            {
                return((System.Boolean)result);
            }
            else
            {
                return(target.UpdateDataPointDB(etyDataPoint));
            }
        }
Ejemplo n.º 3
0
 public static System.Boolean UpdateDataPointDBTSS(
     OPCSampleGrpConfig.Model.OPCDataSelectorModel target,
     Entity.Trending.EtyDataLogDPTrend etyDataPoint)
 {
     return(true);
 }