From b3f6ce999274ce4c20c042d454487d74205bafb1 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Mon, 18 May 2015 20:20:35 -0400 Subject: [PATCH] document return --- src/NetrunnerDb.Net/Repository.cs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/NetrunnerDb.Net/Repository.cs b/src/NetrunnerDb.Net/Repository.cs index 3452ecf..87a3f79 100644 --- a/src/NetrunnerDb.Net/Repository.cs +++ b/src/NetrunnerDb.Net/Repository.cs @@ -14,7 +14,7 @@ namespace NetrunnerDb.Net /// /// /// The URL parameter, not needed for classes that are plural like Sets - /// + /// Returns null if nothing is found /// /// /// @@ -38,7 +38,7 @@ namespace NetrunnerDb.Net /// /// /api/sets/ returns data about all the sets in the database. /// 01001 - /// + /// Returns null if nothing is found /// public IList GetSets() { @@ -59,10 +59,7 @@ namespace NetrunnerDb.Net /// /// /api/cards/ returns data about all the cards in the database. /// - /// - /// - /// - /// + /// Returns null if nothing is found public IList GetCards() { return GetRequest(); @@ -71,7 +68,7 @@ namespace NetrunnerDb.Net /// /// /api/card/{code} returns data about all the cards in the database. /// - /// + /// Returns null if nothing is found /// /// ///