Framework Setup

This commit is contained in:
2020-04-19 21:56:56 -06:00
parent 3d4a0515e5
commit 1acf94c900
220 changed files with 809047 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System.ComponentModel;
using DryIoc;
namespace ConsoleClient
{
public class ConsoleClientModule
{
public class CoreModule : IModule
{
public void Register(IContainer container)
{
container.Register<ISimRunner, SimRunner.SimRunner>();
}
public void Resolve(IContainer container)
{
throw new System.NotImplementedException();
}
}
}
}