public Mesaj GetByID(int entityID) { if (entityID != 0) { try { return(_mesajRepo.Get(a => a.MesajID == entityID)); } catch { throw new Exception("Beklenmedik bir hata oluştu."); } } else { throw new Exception("Mesaj Silinemedi.Lütfen geçerli bir ID değeri girin."); } }
public void DeleteByID(int entityID) { Mesaj currentMesaj = _mesajDAL.Get(a => a.MesajID == entityID); _mesajDAL.Remove(currentMesaj); }