10 [[nodiscard]]
auto remove(
size_t id) ->
bool override;
16 [[nodiscard]]
auto getAll() -> std::vector<NotificationDTO>;
Definition IRepository.hpp:5
Definition NotificationDTO.hpp:19
Definition NotificationRepository.hpp:6
auto create(const NotificationDTO &object) -> bool override
Definition NotificationRepository.cpp:9
auto get(size_t id) -> NotificationDTO override
Definition NotificationRepository.cpp:51
auto remove(size_t id) -> bool override
Definition NotificationRepository.cpp:23
auto update(const NotificationDTO &object) -> bool override
Definition NotificationRepository.cpp:33
auto getAll() -> std::vector< NotificationDTO >
Definition NotificationRepository.cpp:63