Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
st0o0 committed Sep 29, 2023
1 parent c2ef85b commit 923fa86
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/NumberPlateGenerator.Net.Core/NumberPlate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@

namespace NumberPlateGenerator.Net.Core
{

public class NumberPlate
public static class NumberPlate
{

private static IDictionary<Countries, IGenerator> _supportedNumberPlateTypes = new Dictionary<Countries, IGenerator>(){};
private static IDictionary<Countries, IGenerator> _supportedNumberPlateTypes = new Dictionary<Countries, IGenerator>()
{
{Countries.Unknown, null}
};

public static IGenerator GetGenerator(Countries type) => _supportedNumberPlateTypes[type];
}
Expand Down

0 comments on commit 923fa86

Please sign in to comment.