Files
BeWoPlaner/Service/ServiceImplementations/SearchServiceImp.cs
2016-06-27 01:45:38 +02:00

19 lines
545 B
C#

using System;
using System.Collections.Generic;
using System.ServiceModel;
using BeWo.Service.ServiceContracts;
using BS.Shared.DataContracts.Compact;
namespace BeWo.Service.ServiceImplementations
{
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Single)]
public class SearchServiceImp : ISearchService
{
public List<CompactEmployeeDC> FindEmployee(string pSearchString)
{
throw new NotImplementedException();
}
}
}