예제 #1
0
 public static async Task SendDrawingWinnersReport([TimerTrigger(typeof(DrawingResultsUpdateSchedule))] TimerInfo timerInfo)
 {
     await Updates.UpdateWinnersPerDrawing();
 }
예제 #2
0
 public static async Task SendLotteryNotificationToAllUsers([TimerTrigger(typeof(LotteryReminderSchedule))] TimerInfo timerInfo)
 {
     await Updates.SendLotteryNotification();
 }
예제 #3
0
 public static async Task UpdatePowerballResultsAsync([TimerTrigger(typeof(PowerballResultsSchedule))] TimerInfo timerInfo)
 {
     await Updates.UpdatePowerballResults();
 }
예제 #4
0
 public static async Task UpdateMegaMillionsResultsAsync([TimerTrigger(typeof(MegaMillionsResultsSchedule))] TimerInfo timerInfo)
 {
     await Updates.UpdateMegaMillionResults();
 }
예제 #5
0
 public static async Task UpdateMegaMillionsJackpotsAsync([TimerTrigger(typeof(MegaMillionsJackpotSchedule))] TimerInfo timerInfo)
 {
     await Updates.UpdateMegaMillionJackpot();
 }