Пример #1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, IApplicationLifetime applicationLifetime)
        {
            loggerFactory.AddConsole(Configuration.GetSection("Logging"));
            loggerFactory.AddDebug();

            clientWrapper = app.ApplicationServices.GetService <IWhatsAppClientWrapper>();
            applicationLifetime.ApplicationStopping.Register(OnShutdown);

            app.UseMvc();
        }
Пример #2
0
 public WhatsAppInfoController(IWhatsAppClientWrapper wrapper, IHostingEnvironment appEnv)
 {
     clientWrapper  = wrapper;
     appEnvironment = appEnv;
 }