Implementing interfaces (IRespondable)
The most important aspect of baby development is the correct and timely implementation of various interfaces in the Human.Babies namespace.
This week David implemented another useful interface. Finally this enables us to have meaningful conversation with our flagship product. The interface contract is quite simple:
namespace Human.Babies
{
public interface IRespondable
{
bool GetResponse(string question);
}
}
Unfortunately David’s implementation is even simpler:
public bool GetResponse(string question)
{
return false;
}
2 comments:
lol. love it
lb
Thanks for taking pleasure in my pain :)
Post a Comment