public bool GetKullaniciById(int id)
 {
     try
     {
         using (var kullanici = new KullanicilarRepository())
         {
             kullanici.GetKullaniciById(id);
         }
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }