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 FindEmployee(string pSearchString); } }