diff --git a/Core/Controllers/RepairController.cs b/Core/Controllers/RepairController.cs
index 633517c1..584840bc 100644
--- a/Core/Controllers/RepairController.cs
+++ b/Core/Controllers/RepairController.cs
@@ -1,6 +1,39 @@
+using Core.Models.Eft.Common;
+
namespace Core.Controllers;
public class RepairController
{
- // TODO
+ ///
+ /// Handle TraderRepair event
+ /// Repair with trader
+ ///
+ /// session id
+ /// endpoint request data
+ /// player profile
+ /// item event router action
+ public ItemEventRouterResponse TraderRepair(
+ string sessionId,
+ TraderRepairActionDataRequest body,
+ PmcData pmcData)
+ {
+ throw new NotImplementedException();
+ }
+
+ ///
+ /// Handle Repair event
+ /// Repair with repair kit
+ ///
+ /// session id
+ /// endpoint request data
+ /// player profile
+ ///
+ ///
+ public ItemEventRouterResponse RepairWithKit(
+ string sessionId,
+ RepairActionDataRequest body,
+ PmcData pmcData)
+ {
+ throw new NotImplementedException();
+ }
}
\ No newline at end of file