This repository has been archived by the owner on Jul 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created TheaterScheduleHTMLParser and Instantiated it in the Melody49…
…Notifier.
- Loading branch information
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
Melody49Notifier/DataAbstraction/TheaterScheduleHTMLParser.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,25 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Melody49Notifier.Models; | ||
using Microsoft.Azure.WebJobs.Host; | ||
|
||
namespace Melody49Notifier.DataAbstraction | ||
{ | ||
public class TheaterScheduleHTMLParser : ITheaterScheduleHTMLParser | ||
{ | ||
private readonly TraceWriter log; | ||
|
||
public TheaterScheduleHTMLParser(TraceWriter log) | ||
{ | ||
this.log = log; | ||
} | ||
|
||
public TheaterSchedule ParseTheaterScheduleHTML(string html) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
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