Exemplo n.º 1
0
        public async Task Go(IAppEnviroment appEnviroment)
        {
            var appExecutionContext = await SetupAndBindAndConnetctAndEmbedToAppEnviroment(appEnviroment);

            var appConfig = await GetConfig(appExecutionContext);

            var services = await Init(appConfig);

            await Run(services);
        }
Exemplo n.º 2
0
 async Task <IAppExecutionContext> SetupAndBindAndConnetctAndEmbedToAppEnviroment(IAppEnviroment appEnviroment)
 {
     return(new AppExecutionContext());
 }