Files

21 lines
414 B
C#
Raw Permalink Normal View History

2025-12-11 14:13:27 +08:00
using System.ServiceModel;
namespace MySOAP
{
[ServiceContract]
public interface ICalculatorService
{
[OperationContract]
double Add(double a, double b);
[OperationContract]
double Subtract(double a, double b);
[OperationContract]
double Multiply(double a, double b);
[OperationContract]
double Divide(double a, double b);
}
}