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 { #region Properties protected override Type[] SupportedTypes => new[] { typeof(ICountry) }; #endregion #region Constructors public ExampleApiClientCreatingRule(ExampleApiClientConfiguration configuration, Func restWebServiceClientFactory) : base(configuration, restWebServiceClientFactory) { } #endregion } }