public IEnumerable <KullanicilarDTO> KullanicilarListeler()
 {
     return(kullanicilarRepository.GetirListele().Select(x => new KullanicilarDTO
     {
         KullaniciID = x.KullaniciID,
         KullaniciYetkiID = x.KullaniciYetkiID,
         KullaniciAdi = x.KullaniciAdi,
         KullaniciSifre = x.KullaniciSifre,
         AdSoyad = x.AdSoyad,
         Telefon = x.Telefon,
         Email = x.Email
     }).ToList());
 }