Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IPeerReviewServiceProvider.cs
1using System.Collections.Generic;
2using System.Threading.Tasks;
3
4namespace Paiwise
5{
10 {
16 Task<IPeerReviewService[]> GetServicesForPeerReview(KeyValuePair<string, object>[] Identity);
17
24 Task<IPeerReviewService> GetServiceForPeerReview(string ServiceId, KeyValuePair<string, object>[] Identity);
25 }
26}
Interface for peer-review service providers.
Task< IPeerReviewService[]> GetServicesForPeerReview(KeyValuePair< string, object >[] Identity)
Gets available peer-review services.
Task< IPeerReviewService > GetServiceForPeerReview(string ServiceId, KeyValuePair< string, object >[] Identity)
Gets a peer-review service.
Interface for information about a service provider.