22 lines
665 B
C#
22 lines
665 B
C#
using RobotNet10.FleetManager.Script;
|
|
|
|
namespace RobotNet10.FleetManager.Services.Script;
|
|
|
|
public class ScriptLayoutManager : ILayoutManager
|
|
{
|
|
public Task<RobotNet.VDA5050.InstantAction.Action> GetAction(string layout, string version, string level, string name, string robotId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<INode> GetNode(string layout, string version, string level, string name)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<IStation> GetStation(string layout, string version, string level, string name)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|