コード例 #1
0
        public static TestCaseProxy Prompt(AreaProxy relatedArea)
        {
            TestCaseDialog inst = new TestCaseDialog(relatedArea);
            inst.ShowDialog();

            return testCase;
        }
コード例 #2
0
        public static TestCaseProxy Prompt(TestCaseProxy editTestCase)
        {
            TestCaseDialog inst = new TestCaseDialog(editTestCase);
            inst.ShowDialog();

            return testCase;
        }