Files
Web_PMSApi_Server_V1_Prod/MySOAP/ICalculatorService.cs
2025-12-11 14:13:27 +08:00

21 lines
414 B
C#

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);
}
}