aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Aggregator/Parser/Parser.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Aggregator/Parser/Parser.cs b/Aggregator/Parser/Parser.cs
index f1a28b9..4952a3d 100644
--- a/Aggregator/Parser/Parser.cs
+++ b/Aggregator/Parser/Parser.cs
@@ -1,7 +1,10 @@
using System;
+using System.Collections.Generic;
+using Aggregator.Classes;
namespace Aggregator.Parser {
public static class Parser {
-
+ public static IEnumerable<Article> Parse(string xml);
+ public static IEnumerable<IEnumerable<Article>> ParseMultiple(string xmls);
}
} \ No newline at end of file