Example #1
0
 public HomeController(IUnitOfWork unitOfWork, ISaveCommentsToDb saveCommentsToDb, ISaveMovies saveMovies, ILemmatization lemmatization, ICommentHanlder commentHanlder)
 {
     _unitOfWork       = unitOfWork;
     _saveCommentsToDb = saveCommentsToDb;
     _saveMovies       = saveMovies;
     _lemmatization    = lemmatization;
     _commentHanlder   = commentHanlder;
 }
Example #2
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ISaveCommentsToDb saveCommentsToDb, ISaveMovies saveMovies)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseCookiePolicy();

            app.UseAuthentication();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
            });

            //Hangfire

            /* app.UseHangfireServer();
             * app.UseHangfireDashboard();
             *
             * RecurringJob.AddOrUpdate(
             *  () => saveMovies.SaveMov(),
             *  Cron.Daily(5,0));*/
        }
Example #3
0
 public MoviesGetterService(IUnitOfWork unitOfWork, ISaveCommentsToDb saveCommentsToDb, ICommentHanlder commentHanlder)
 {
     _unitOfWork       = unitOfWork;
     _saveCommentsToDb = saveCommentsToDb;
     _commentHanlder   = commentHanlder;
 }