Skip to content

Instantly share code, notes, and snippets.

@tawman
Created January 21, 2012 18:44
Show Gist options
  • Save tawman/1653561 to your computer and use it in GitHub Desktop.
Save tawman/1653561 to your computer and use it in GitHub Desktop.
Implement IToddWood Blog - http://www.wooodcp.com
using System;
using System.Collections.Generic;
namespace WoodConsultingPractice
{
public interface IToddWood
{
IEnumerable<Result> Work<T>(T challenge);
IEnumerable<Memory> Life(Action action);
Post Blog<T>(Result knowledge, Memory experience, T content);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment