1 2 3 4 5 6 7 8 9 10 11
package calculator; /** * The interface for the multiply service */ public interface MultiplyService { double multiply(double n1, double n2); }