Created
January 21, 2012 18:44
-
-
Save tawman/1653561 to your computer and use it in GitHub Desktop.
Implement IToddWood Blog - http://www.wooodcp.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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