2025-04-02 16:01:21 +02:00
|
|
|
|
using BeWo.Data.Entities;
|
2025-04-14 10:15:45 +02:00
|
|
|
|
using BS.Shared;
|
2025-06-02 12:33:14 +02:00
|
|
|
|
using BS.Shared.Core;
|
2025-03-19 09:35:01 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.ServiceModel;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2025-06-02 11:16:35 +02:00
|
|
|
|
namespace BeWo.Service.ServiceContracts.Enhanced
|
2025-03-19 09:35:01 +01:00
|
|
|
|
{
|
|
|
|
|
|
[ServiceContract]
|
|
|
|
|
|
public interface IOperationsEnhancedService : IService
|
|
|
|
|
|
{
|
2025-04-14 13:04:13 +02:00
|
|
|
|
[FaultContract(typeof(BeWoFault))]
|
|
|
|
|
|
[OperationContract]
|
2025-06-02 11:16:35 +02:00
|
|
|
|
string HelloWorld();
|
2025-03-19 09:35:01 +01:00
|
|
|
|
}
|
2025-04-02 16:01:21 +02:00
|
|
|
|
}
|