25 lines
776 B
C#
25 lines
776 B
C#
using System;
|
|
using GerstITS.Examples.WebClients.Examples.Api.Configurations;
|
|
using GerstITS.Web.Rest.WebClients;
|
|
|
|
namespace GerstITS.Examples.WebClients.Examples.Api.CreationRules
|
|
{
|
|
internal sealed class ExampleApiClientCreatingRule : RestApiClientCreationRuleBase<ExampleApiClientConfiguration>
|
|
{
|
|
#region Properties
|
|
|
|
protected override Type[] SupportedTypes => new[] { typeof(ICountry) };
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public ExampleApiClientCreatingRule(ExampleApiClientConfiguration configuration,
|
|
Func<IRestWebServiceConfiguration, IRestWebServiceClient> restWebServiceClientFactory)
|
|
: base(configuration, restWebServiceClientFactory)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |