public bool Update(Mesaj entity) { if (entity != null) { try { _mesajRepo.Update(entity); return(true); } catch { throw new Exception("Beklenmedik bir hata oluştu."); } } else { throw new Exception("Boş veri eklenemez."); } }
public void Update(Mesaj entity) { _mesajDAL.Update(entity); }