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

15 lines
371 B
C#

using System.Collections.Generic;
using System.ServiceModel;
using BS.Shared.DataContracts.Compact;
namespace BeWo.Service.ServiceContracts
{
[ServiceContract]
public interface ISearchService
{
[FaultContract(typeof(BeWoFault))]
[OperationContract]
List<CompactEmployeeDC> FindEmployee(string pSearchString);
}
}