workflow interface definition

This commit is contained in:
Paul Schneider 2014-09-25 12:42:43 +02:00
commit 1307b62ecb
4 changed files with 59 additions and 8 deletions

View file

@ -12,6 +12,36 @@ namespace WorkFlowProvider
{
public class NpgsqlContentProvider: ProviderBase, IContentProvider
{
public StatusChange[] GetWrittingStatuses (long wrid)
{
throw new NotImplementedException ();
}
public StatusChange[] GetEstimateStatuses (long estid)
{
throw new NotImplementedException ();
}
public void DropTagWritting (long wrid, string tag)
{
throw new NotImplementedException ();
}
public void UpdateWritting (Writting wr)
{
throw new NotImplementedException ();
}
public void SetWrittingStatus (long wrtid, int status, string username)
{
throw new NotImplementedException ();
}
public void SetEstimateStatus (long estid, int status, string username)
{
throw new NotImplementedException ();
}
public void TagWritting (long wrid, string tag)
{
throw new NotImplementedException ();