コード例 #1
0
        /// <summary>
        /// We list the ID's of all the devices in the DataBase that are signaled as Status TESTING
        /// </summary>
        /// <returns>An Array of ID's in String</returns>
        public string[] TestingDeviceIDList()
        {
            var DB = new Data_Broker();

            return(DB.ListDeviceByState(8));
        }
コード例 #2
0
        /// <summary>
        /// We list the ID's of all the devices in the DataBase that are signaled as Status IN MAINTENANCE
        /// </summary>
        /// <returns>An Array of ID's in String</returns>
        public string[] MaintenanceDeviceIDList()
        {
            var DB = new Data_Broker();

            return(DB.ListDeviceByState(7));
        }
コード例 #3
0
        /// <summary>
        /// We list the ID's of all the devices in the DataBase that are signaled as Status OPERATIONAL
        /// </summary>
        /// <returns>An Array of ID's in String</returns>
        public string[] OperationalDeviceIDList()
        {
            var DB = new Data_Broker();

            return(DB.ListDeviceByState(4));
        }
コード例 #4
0
        /// <summary>
        /// We list the ID's of all the devices in the DataBase that are signaled as Status IN THE FIELD
        /// </summary>
        /// <returns>An Array of ID's in String</returns>
        public string[] InFieldDeviceIDList()
        {
            var DB = new Data_Broker();

            return(DB.ListDeviceByState(6));
        }
コード例 #5
0
        /// <summary>
        /// We list the ID's of all the devices in the DataBase that are signaled as Status DEPRECIATED
        /// </summary>
        /// <returns>An Array of ID's in String</returns>
        public string[] DepreciatedIDDeviceList()
        {
            var DB = new Data_Broker();

            return(DB.ListDeviceByState(5));
        }