Ejemplo n.º 1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, HaberSitesiDbContext db)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            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();
            db.Database.EnsureCreated();
            app.UseCors(c => c.AllowAnyHeader().AllowAnyMethod().AllowAnyOrigin());
            app.UseStaticFiles();

            app.UseRouting();

            app.UseAuthentication();
            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    name: "default",
                    pattern: "{controller=Home}/{action=Index}/{id?}");
            });
        }
Ejemplo n.º 2
0
 public KoseYazisiController()
 {
     this.db              = new HaberSitesiDbContext();
     this.haberServis     = new HaberServis(db);
     this.kategoriServis  = new KategoriServis(db);
     this.kullaniciServis = new KullaniciServis(db);
 }
Ejemplo n.º 3
0
 public OrtakController()
 {
     this.db              = new HaberSitesiDbContext();
     this.haberServis     = new HaberServis(db);
     this.kategoriServis  = new KategoriServis(db);
     this.kullaniciServis = new KullaniciServis(db);
     this.yorumServis     = new YorumServis(db);
 }
Ejemplo n.º 4
0
 public HaberController()
 {
     this.db              = new HaberSitesiDbContext();
     this.haberServis     = new HaberServis(db);
     this.etiketServis    = new EtiketServis(db);
     this.kategoriServis  = new KategoriServis(db);
     this.kullaniciServis = new KullaniciServis(db);
 }
Ejemplo n.º 5
0
 public HaberController()
 {
     this.db          = new HaberSitesiDbContext();
     this.haberServis = new HaberServis(db);
 }
Ejemplo n.º 6
0
 public YazarController()
 {
     this.db = new HaberSitesiDbContext();
     this.kullaniciServis = new KullaniciServis(db);
 }
Ejemplo n.º 7
0
 public KategoriServis(HaberSitesiDbContext db)
 {
     this.db = db;
 }
Ejemplo n.º 8
0
 public EtiketController()
 {
     this.db           = new HaberSitesiDbContext();
     this.etiketServis = new EtiketServis(db);
 }
Ejemplo n.º 9
0
 public AyarServis(HaberSitesiDbContext db)
 {
     this.db = db;
 }
Ejemplo n.º 10
0
 public GaleriServis(HaberSitesiDbContext db)
 {
     this.db = db;
 }
Ejemplo n.º 11
0
 public RolServis()
 {
     this.db = new HaberSitesiDbContext();
 }
Ejemplo n.º 12
0
 public GaleriController()
 {
     this.db           = new HaberSitesiDbContext();
     this.galeriServis = new GaleriServis(db);
     this.haberServis  = new HaberServis(db);
 }
Ejemplo n.º 13
0
 public AnasayfaController()
 {
     this.db = new HaberSitesiDbContext();
 }
Ejemplo n.º 14
0
 public KullaniciServis()
 {
     this.db = new HaberSitesiDbContext();
 }
Ejemplo n.º 15
0
 public KullaniciServis(HaberSitesiDbContext db)
 {
     this.db = db;
 }
Ejemplo n.º 16
0
 public AdminController()
 {
     this.db = new HaberSitesiDbContext();
 }
Ejemplo n.º 17
0
 public EtiketServis(HaberSitesiDbContext db)
 {
     this.db = db;
 }
Ejemplo n.º 18
0
 public KategoriController()
 {
     this.db             = new HaberSitesiDbContext();
     this.kategoriServis = new KategoriServis(db);
 }
Ejemplo n.º 19
0
 public ResimServis(HaberSitesiDbContext db)
 {
     this.db = db;
 }
Ejemplo n.º 20
0
 public RolController()
 {
     this.db        = new HaberSitesiDbContext();
     this.rolServis = new RolServis(db);
 }
Ejemplo n.º 21
0
 public RolServis(HaberSitesiDbContext db)
 {
     this.db = db;
     this.kullaniciServis = new KullaniciServis(db);
 }
Ejemplo n.º 22
0
 public HaberServis(HaberSitesiDbContext db)
 {
     this.db             = db;
     this.kategoriServis = new KategoriServis(db);
 }