29 [[nodiscard]]
bool remove(
size_t id)
noexcept override;
35 [[nodiscard]] std::vector<NotificationDTO>
getAll()
const noexcept;
Definition DatabaseExecutor.hpp:21
Definition IRepository.hpp:36
Definition NotificationDTO.hpp:19
NotificationDTO get(size_t id) const noexcept override
Definition NotificationRepository.cpp:83
std::vector< NotificationDTO > getAll() const noexcept
Definition NotificationRepository.cpp:98
bool update(const NotificationDTO &object) noexcept override
Definition NotificationRepository.cpp:62
bool create(const NotificationDTO &object) noexcept override
Definition NotificationRepository.cpp:32
bool remove(size_t id) noexcept override
Definition NotificationRepository.cpp:49
NotificationRepository()
Definition NotificationRepository.cpp:23