#pragma once #include #include #include "ObjectService.h" #include "../DTO/Drop.h" #include "../Entities/Drop.h" #include "../Repositories/DropRepositoryInterface.h" namespace L2Bot::Domain::Services { class DropService : public ObjectService { public: DropService(Repositories::DropRepositoryInterface& repository) : ObjectService(repository) { } virtual ~DropService() override = default; }; }