#ifndef REPOSITORY_INTERFACE_H #define REPOSITORY_INTERFACE_H #include class RepositoryInterface { public: virtual ~RepositoryInterface() = default; }; #endif // REPOSITORY_INTERFACE_H