Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#region Using Directives

using RumbaMumbaRobots.Paths;
using RumbaMumbaRobots.Printing;
using RumbaMumbaRobots.ReturnAlgorithm;
using RumbaMumbaRobots.Robot;

#endregion
namespace RumbaMumbaRobots.ReturnAlgorithm
{
/// <summary>
///
/// </summary>
class HardwareRobotReceiptionRoomCleanerReset : IHardwareRobotRoomCleanerReset
{
#region Private Variables

/// <summary>
///
/// </summary>
private readonly IHardwareRobotMovement _hardwareRobotMovement;

#endregion

#region Class Constuctors

/// <summary>
///
/// </summary>
/// <param name="hardwareRobotMovement"></param>
public HardwareRobotReceiptionRoomCleanerReset(IHardwareRobotMovement
hardwareRobotMovement)
{
_hardwareRobotMovement = hardwareRobotMovement;
}

#endregion

#region Method Implementations

/// <summary>
///
/// </summary>
public void ReturnToTopLeftCorner()
{
_hardwareRobotMovement.Reset();
}

#endregion
}
}

You might also like