Files
BeWoPlaner/Service/ServiceContracts/ISearchService.cs

15 lines
392 B
C#

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