Skip to content

Commit 0af68d4

Browse files
committed
Merge pull request #101 from WebApiContrib/dev
Dev
2 parents 6689515 + ca1a5fb commit 0af68d4

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

src/CollectionJson/CollectionJson.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
<Link>Properties\VersionInfo.cs</Link>
4747
</Compile>
4848
<Compile Include="Collection.cs" />
49+
<Compile Include="CollectionJsonDocumentWriter_Of_T.cs" />
4950
<Compile Include="CollectionJsonDocumentWriterExtensions.cs" />
5051
<Compile Include="Data.cs" />
5152
<Compile Include="Error.cs" />
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
6+
namespace CollectionJson
7+
{
8+
public abstract class CollectionJsonDocumentWriter<TItem> : ICollectionJsonDocumentWriter<TItem>
9+
{
10+
public virtual IReadDocument Write(IEnumerable<TItem> data, Uri uri)
11+
{
12+
throw new NotImplementedException();
13+
}
14+
15+
public virtual IReadDocument Write(IEnumerable<TItem> data)
16+
{
17+
throw new NotImplementedException();
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)