2025-04-09 10:59:23 +02:00
|
|
|
|
using BeWo.Data;
|
|
|
|
|
|
using BeWo.Data.Access;
|
2025-03-28 10:05:29 +01:00
|
|
|
|
using BeWo.Data.Entities;
|
2025-04-09 10:59:23 +02:00
|
|
|
|
using BeWo.Data.Security;
|
2025-04-02 16:01:21 +02:00
|
|
|
|
using BeWo.Service.DCEntityMapper;
|
2025-03-28 10:05:29 +01:00
|
|
|
|
using BeWo.Service.ServiceContracts;
|
2025-03-19 16:30:27 +01:00
|
|
|
|
using BeWo.Service.ServiceProxy;
|
2025-04-02 16:01:21 +02:00
|
|
|
|
using BeWo.Service.ServiceUtils;
|
2025-04-14 10:15:45 +02:00
|
|
|
|
using BS.Shared;
|
2025-03-19 16:30:27 +01:00
|
|
|
|
using BS.Shared.DataContracts;
|
2025-04-02 16:01:21 +02:00
|
|
|
|
using BS.Shared.DataContracts.Feature.AI;
|
2025-03-28 10:05:29 +01:00
|
|
|
|
using BS.Shared.DataContracts.MikePHPContracts;
|
2025-04-02 16:01:21 +02:00
|
|
|
|
using DevExpress.Entity.Model.Metadata;
|
2025-03-28 10:05:29 +01:00
|
|
|
|
using Newtonsoft.Json;
|
2025-03-19 09:35:01 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
2025-04-14 10:15:45 +02:00
|
|
|
|
using System.Security.Cryptography;
|
2025-03-19 09:35:01 +01:00
|
|
|
|
using System.ServiceModel;
|
|
|
|
|
|
using System.Text;
|
2025-04-08 10:22:22 +02:00
|
|
|
|
using System.Threading;
|
2025-03-19 09:35:01 +01:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BeWo.Service.ServiceImplementations
|
|
|
|
|
|
{
|
|
|
|
|
|
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Single)]
|
|
|
|
|
|
public class OperationsEnhancedServiceImp : IOperationsEnhancedService
|
|
|
|
|
|
{
|
2025-04-14 13:04:13 +02:00
|
|
|
|
public void HelloWorld()
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
2025-03-19 09:35:01 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|