Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServiceProviderWithTemplate.cs
2
3namespace EDaler
4{
9 {
16 public ServiceProviderWithTemplate(string Id, string Type, string Name)
17 : base(Id, Type, Name)
18 {
19 }
20
30 public ServiceProviderWithTemplate(string Id, string Type, string Name, string IconUrl, int IconWidth, int IconHeight)
32 {
33 }
34
42 public abstract IServiceProviderWithTemplate Create(string Id, string Type, string Name, string TemplateContractId);
43
54 public abstract IServiceProviderWithTemplate Create(string Id, string Type, string Name, string IconUrl, int IconWidth, int IconHeight, string TemplateContractId);
55 }
56}
Contains information about a service provider.
ServiceProviderWithTemplate(string Id, string Type, string Name, string IconUrl, int IconWidth, int IconHeight)
Contains information about a service provider.
ServiceProviderWithTemplate(string Id, string Type, string Name)
Contains information about a service provider.
abstract IServiceProviderWithTemplate Create(string Id, string Type, string Name, string TemplateContractId)
Creates a new instance of the service provider.
abstract IServiceProviderWithTemplate Create(string Id, string Type, string Name, string IconUrl, int IconWidth, int IconHeight, string TemplateContractId)
Creates a new instance of the service provider.
Contains information about a service provider.
string Name
Displayable name of service provider.
int IconWidth
Width of icon, if available.
string IconUrl
Optional URL to icon of service provider.
int IconHeight
Height of icon, if available.
Interface for information about a service provider.