/// <summary>
        /// データ読み込み
        /// </summary>
        protected override void ReadData()
        {
            try
            {
                this._comMethod = CommunicationMethod.FindCommunicationMethodBy(base.Condition);
            }
            catch
            {
                throw;
            }

            this.grdList.DataSource = this._comMethod;
        }
        public void TestFindCommunicationMethodBy(int expected, Condition condition)
        {
            var data = CommunicationMethod.FindCommunicationMethodBy(condition);

            Assert.AreEqual(expected, data.Count);
        }