Files
BeWoPlaner/Service/ServiceContracts/Enhanced/IOperationsEnhancedService.cs

20 lines
427 B
C#
Raw Permalink Normal View History

using BeWo.Data.Entities;
using BS.Shared;
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
}
}