Esempio n. 1
0
 public string Update(Kisi item)
 {
     try
     {
         _kisiRepository.Update(item);
         return("Update İşlemi Basarılı");
     }
     catch (Exception ex)
     {
         return(ex.Message);
     }
 }
Esempio n. 2
0
 public string UpdateKisi(Kisi item)
 {
     try
     {
         kr.Update(item);
         return("Update işlemi başarılı");
     }
     catch (Exception ex)
     {
         return(ex.Message);
     }
 }