Files
BeWoPlaner/Service/ServiceContracts/IOperationsEnhancedService.cs
2025-03-19 16:30:27 +01:00

36 lines
832 B
C#

using BS.Shared.DataContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Service.ServiceContracts
{
[ServiceContract]
public interface IOperationsEnhancedService : IService
{
[FaultContract(typeof(BeWoFault))]
[OperationContract]
object Method1(object input, object input2);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
object Method2(object input, object input2);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
object Method3(object input, object input2);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
object Method4(object input, object input2);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
List<AiModelDC> GetAiModels();
}
}