public int CalculateTotal(discount int, Actualprice int) { int total = 0; total = Actualprice - ((Actualprice*discount)/100); -- calculation of total amount after discount return total; }
Mark This Response as Answer -- Chandu http://www.dotnetfunda.com/images/dnfmvp.gif
Login to post response