LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using System; 2 : using System.Collections.Generic; 3 : using System.ServiceModel; 4 : using Cqrs.Events; 5 : 6 : namespace Cqrs.Services 7 : { 8 : [ServiceContract(Namespace = "https://getcqrs.net/Domain/1001/")] 9 : public interface IEventService<TAuthenticationToken> 10 : { 11 : [OperationContract] 12 0 : IServiceResponseWithResultData<IEnumerable<EventData>> GetEventData(IServiceRequestWithData<TAuthenticationToken, Guid> serviceRequest); 13 : } 14 : } |
Generated by: LCOV version 1.10 |