2016-06-27 01:45:38 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ServiceModel;
|
2025-06-02 12:33:14 +02:00
|
|
|
|
using BS.Shared.Core;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
using BS.Shared.DataContracts.Compact;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BeWo.Service.ServiceContracts
|
|
|
|
|
|
{
|
|
|
|
|
|
[ServiceContract]
|
|
|
|
|
|
public interface ISearchService
|
|
|
|
|
|
{
|
|
|
|
|
|
[FaultContract(typeof(BeWoFault))]
|
|
|
|
|
|
[OperationContract]
|
|
|
|
|
|
List<CompactEmployeeDC> FindEmployee(string pSearchString);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|