diff --git a/inc/Services/EventActionService.hpp b/inc/Services/EventActionService.hpp
index d410143153a2efa72813c2ca89f07b962a6328af..1c4a95f45be64429c250d1db04600a7ec04b51f1 100644
--- a/inc/Services/EventActionService.hpp
+++ b/inc/Services/EventActionService.hpp
@@ -86,8 +86,15 @@ public:
 	/**
 	 * Setter for event-action status
 	 */
-	void setEventActionStatus(EventActionStatus){
+	void setEventActionStatus(EventActionStatus e){
+		eventActionStatus = e;
+	}
 
+	/**
+	 * Setter for event-action function status
+	 */
+	void setEventActionFunctionStatus(EventActionFunctionStatus e){
+		eventActionFunctionStatus = e;
 	}
 };
 
diff --git a/src/Services/EventActionService.cpp b/src/Services/EventActionService.cpp
index 05e7770692b63a94639ed3691bb31715a36c60b5..989a5ba54867e8bd9041b91dc121e600c85fe375 100644
--- a/src/Services/EventActionService.cpp
+++ b/src/Services/EventActionService.cpp
@@ -77,7 +77,6 @@ void EventActionService::enableEventActionFunction(Message message) {
 	// TC[19,8]
 	if (message.messageType == 8 && message.packetType == Message::TC && message.serviceType
 	                                                                     == 19){
-
 	}
 }
 
@@ -85,6 +84,5 @@ void EventActionService::disableEventActionFunction(Message message) {
 	// TC[19,9]
 	if (message.messageType == 9 && message.packetType == Message::TC && message.serviceType
 	                                                                     == 19){
-
 	}
 }