Browse Source

Country name should be larger.

pull/29/head
Halil İbrahim Kalkan 6 years ago
parent
commit
994dd83ecc
  1. 2
      src/EventHub.Domain.Shared/Countries/CountryConsts.cs
  2. 4
      src/EventHub.Domain.Shared/EventHubGlobalFeatureConfigurator.cs
  3. 2
      src/EventHub.Domain.Shared/EventHubModuleExtensionConfigurator.cs

2
src/EventHub.Domain.Shared/Countries/CountryConsts.cs

@ -2,6 +2,6 @@ namespace EventHub.Countries
{
public static class CountryConsts
{
public const int MaxNameLength = 32;
public const int MaxNameLength = 64;
}
}

4
src/EventHub.Domain.Shared/EventHubGlobalFeatureConfigurator.cs

@ -4,7 +4,7 @@ namespace EventHub
{
public static class EventHubGlobalFeatureConfigurator
{
private static readonly OneTimeRunner OneTimeRunner = new OneTimeRunner();
private static readonly OneTimeRunner OneTimeRunner = new();
public static void Configure()
{
@ -20,4 +20,4 @@ namespace EventHub
});
}
}
}
}

2
src/EventHub.Domain.Shared/EventHubModuleExtensionConfigurator.cs

@ -7,7 +7,7 @@ namespace EventHub
{
public static class EventHubModuleExtensionConfigurator
{
private static readonly OneTimeRunner OneTimeRunner = new OneTimeRunner();
private static readonly OneTimeRunner OneTimeRunner = new();
public static void Configure()
{

Loading…
Cancel
Save