25 lines
519 B
C#
25 lines
519 B
C#
using BeWo.Service.ServiceContracts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service.ServiceImplementations
|
|
{
|
|
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Single)]
|
|
public class AdminServiceImp : IAdminService
|
|
{
|
|
public string Test()
|
|
{
|
|
return "Test erfolgreich!";
|
|
}
|
|
|
|
public string Echo(string echo)
|
|
{
|
|
return echo;
|
|
}
|
|
}
|
|
}
|