Пример #1
0
 public void ResolveIoc()
 {
     var global = new StubMvcApplication();
     global.Start(new GlobalFilterCollection(), new RouteCollection());
     global.Container.Resolve<IMappingEngine>();
     global.Container.Resolve<GeneralLedger>();
     global.Container.Resolve<DirectoryExplorer>();
     global.Container.Resolve<ImportDetector>();
     global.Container.Resolve<TransactionImportContext>();
 }
Пример #2
0
 public void Start()
 {
     var global = new StubMvcApplication();
     global.Start(new GlobalFilterCollection(), new RouteCollection());
 }