Skip to content

Commit

Permalink
Merge pull request #101 from WebApiContrib/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
glennblock committed Oct 23, 2014
2 parents 6689515 + ca1a5fb commit 0af68d4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/CollectionJson/CollectionJson.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="Collection.cs" />
<Compile Include="CollectionJsonDocumentWriter_Of_T.cs" />
<Compile Include="CollectionJsonDocumentWriterExtensions.cs" />
<Compile Include="Data.cs" />
<Compile Include="Error.cs" />
Expand Down
20 changes: 20 additions & 0 deletions src/CollectionJson/CollectionJsonDocumentWriter_Of_T.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace CollectionJson
{
public abstract class CollectionJsonDocumentWriter<TItem> : ICollectionJsonDocumentWriter<TItem>
{
public virtual IReadDocument Write(IEnumerable<TItem> data, Uri uri)
{
throw new NotImplementedException();
}

public virtual IReadDocument Write(IEnumerable<TItem> data)
{
throw new NotImplementedException();
}
}
}

0 comments on commit 0af68d4

Please sign in to comment.