Files
BeWoPlaner/Service/ServiceContracts/Enhanced/IOperationsEnhancedService.cs
2026-01-23 16:28:47 +01:00

20 lines
427 B
C#

using BeWo.Data.Entities;
using BS.Shared;
using BS.Shared.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Service.ServiceContracts.Enhanced
{
[ServiceContract]
public interface IOperationsEnhancedService : IService
{
[FaultContract(typeof(BeWoFault))]
[OperationContract]
string HelloWorld();
}
}