using RobotNet10.FleetManager.Script; namespace RobotNet10.FleetManager.Services.Script; public class ScriptLayoutManager : ILayoutManager { public Task GetAction(string layout, string version, string level, string name, string robotId) { throw new NotImplementedException(); } public Task GetNode(string layout, string version, string level, string name) { throw new NotImplementedException(); } public Task GetStation(string layout, string version, string level, string name) { throw new NotImplementedException(); } }