blob: 2a6480058d01f7db63bc6751fa12ac6620a23650 [file] [log] [blame]
using System;
namespace Agility.Core
{
/// <summary>
/// A Command that sets a new output value to the DateTime for "Now".
/// </summary>
public class TestNowCommand : ICommand
{
public bool Execute(IContext _context)
{
TestContext context = _context as TestContext;
context[context.OutputKey] = DateTime.Now;
return false;
}
}
}