private static CoreCommon.Context GetDomainContext()
        {
            var domainContext = new CoreCommon.Context();
            var tenantContextChain = new CoreCommon.ContextChainLink
            {
                Id = new Guid("8ad8f0ef-b50c-4385-953e-cc05a9a83099")
            };


            domainContext.ContextChain = tenantContextChain;
            return domainContext;
        }
Example #2
0
        public static void BeforeTest(TestContext testContext)
        {
            _context = new Context {ContextChain = new ContextChainLink()};

        }