-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #305 from DiscoPYF/postDocumentReturnType
Add a PostDocumentAsync with extra generic for new doc type.
- Loading branch information
Showing
5 changed files
with
88 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
9 changes: 9 additions & 0 deletions
9
arangodb-net-standard.Test/DocumentApi/Models/PostDocumentMockModel.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using ArangoDBNetStandard.DocumentApi.Models; | ||
|
||
namespace ArangoDBNetStandardTest.DocumentApi.Models | ||
{ | ||
public class PostDocumentMockModel : DocumentBase | ||
{ | ||
public string Message { get; set; } | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
arangodb-net-standard.Test/DocumentApi/Models/PostDocumentMockModelNew.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace ArangoDBNetStandardTest.DocumentApi.Models | ||
{ | ||
public class PostDocumentMockModelNew | ||
{ | ||
public string Message { get; set; } | ||
} | ||
} |
This file contains 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
This file contains 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