You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
475 B

using System;
namespace FiveLetters.Model
{
public class MockTaskProvider : ITaskProvider
{
private FiveLettersTask _task;
public MockTaskProvider(string word)
{
_task = new FiveLettersTask(DateTime.Now, word);
}
public FiveLettersTask GetTask(string taskGuid)
{
return _task;
}
public FiveLettersTask GetTodayTask()
{
return _task;
}
}
}