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 Initial NotificationEmailSender and Added it to the Melody49N…
…otifier.
- Loading branch information
Showing
2 changed files
with
30 additions
and
2 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
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.Notification | ||
{ | ||
public class NotificationEmailSender : INotificationEmailSender | ||
{ | ||
public NotificationEmailSender(TraceWriter log) | ||
{ | ||
Log = log; | ||
} | ||
|
||
public TraceWriter Log { get; } | ||
|
||
public void SendNotificationEmail(TheaterSchedule currentTheaterSchedule) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |