コード例 #1
0
        // END OF VALIDATION!!!


        // Getting information and send them to desk Quote for calculation

        //Area Cost
        public int getInput()
        {
            int inputwidth = Int32.Parse(InputWidth.Text);
            int inputDepth = Int32.Parse(InputDepth.Text);
            int areaCost   = dq.areaCalc(inputwidth, inputDepth);

            return(areaCost);
        }
コード例 #2
0
ファイル: AddQuote.cs プロジェクト: roguejuan44/rescue
        // END OF VALIDATION!!!


        // Getting information and send them to desk Quote for calculation

        //Area Cost
        public int getInput()
        {
            int inputwidth = Int32.Parse(InputWidth.Text);
            int inputDepth = Int32.Parse(InputDepth.Text);
            int areaCost = DeskQuote.areaCalc(inputwidth, inputDepth);
          
            return areaCost;
            
        }