WPF hinzugefügt

This commit is contained in:
Husky
2021-02-26 18:31:57 +01:00
parent 6761b17f4d
commit 746353e54e
34 changed files with 1261 additions and 37 deletions

View File

@@ -0,0 +1,20 @@
using DataStoring.Contract;
using DataStoring.EfCore;
using DichtheitManagement;
using DichtheitManagement.Contract;
using Ninject;
using System;
namespace Mappings
{
public class KernelInitializer
{
public void Initialize(IKernel kernel)
{
kernel.Bind<DPContext>().ToSelf();
kernel.Bind(typeof(IRepository<>)).To(typeof(Repository<>));
kernel.Bind<IAuftraggeberManager>().To<AuftraggeberManager>();
kernel.Bind<IBaustelleManager>().To<BaustelleManager>();
}
}
}