public async Task <object> SingleCellInfo(string address)
        {
            object message;

            try
            {
                message = _info.CellInfo(address);
            }
            catch (Exception ex)
            {
                message = Respond.Bad_Request + " " + ex.ToString();
                _logger.Error(ex, "SingleCellInfo");
            }
            return(message.ToString());
        }
        private void ScanCellInfoBtn_Click(object sender, EventArgs e)
        {
            var message = info.CellInfo(PhysAddresesList.SelectedItems.ToString());

            MessageBox.Show(message.ToString(), "Scan");
        }