Esempio n. 1
0
        public string Divide(int n1, int n2)
        {
            var service = new com.dneonline.Calculator();
            int result  = service.Divide(n1, n2);

            return("= " + result);
        }
Esempio n. 2
0
        public string Subtract(int n1, int n2)
        {
            var service = new com.dneonline.Calculator();
            int result  = service.Subtract(n1, n2);

            return("= " + result);
        }