Ejemplo n.º 1
0
        public IHttpActionResult fusedSensorOnlyDataCount()
        {
            FusedSensorOnlyDataStore fusedSensorOnlyDataStore = (FusedSensorOnlyDataStore)DataStoreFactory.GetInstance().GetDataStore(DataStoreFactory.DATA_STORES.FUSED_SENSOR_ONLY_DATA_STORE);

            return(Json(fusedSensorOnlyDataStore.getAllFusedSensorOnlyData().Count, new JsonSerializerSettings {
                NullValueHandling = NullValueHandling.Ignore, Converters = { new StringEnumConverter {
                                                                             } }
            }));
        }
 public DATEXIIFusedSensorOnlyProcessService() : base()
 {
     logWrapper = new LogWrapper("DATEXIIFusedSensorOnlyProcessService");
     fusedSensorOnlyDataStore = (FusedSensorOnlyDataStore)DataStoreFactory.GetInstance().GetDataStore(DataStoreFactory.DATA_STORES.FUSED_SENSOR_ONLY_DATA_STORE);
 }