public KullaniciController(KullaniciContext context)
        {
            _context = context;

            if (_context.Kullanicis.Count() == 0)
            {
                _context.Kullanicis.Add(new Kullanici {
                    KullaniciID = 1, KullaniciAdi = "Kübra ATLI", Email = "*****@*****.**"
                });
                _context.Kullanicis.Add(new Kullanici {
                    KullaniciID = 2, KullaniciAdi = "Büşra Sağlam", Email = "*****@*****.**"
                });
                _context.Kullanicis.Add(new Kullanici {
                    KullaniciID = 3, KullaniciAdi = "Sevgi Hayat", Email = "*****@*****.**"
                });

                _context.SaveChanges();
            }
        }