public static async Task SendDrawingWinnersReport([TimerTrigger(typeof(DrawingResultsUpdateSchedule))] TimerInfo timerInfo) { await Updates.UpdateWinnersPerDrawing(); }
public static async Task SendLotteryNotificationToAllUsers([TimerTrigger(typeof(LotteryReminderSchedule))] TimerInfo timerInfo) { await Updates.SendLotteryNotification(); }
public static async Task UpdatePowerballResultsAsync([TimerTrigger(typeof(PowerballResultsSchedule))] TimerInfo timerInfo) { await Updates.UpdatePowerballResults(); }
public static async Task UpdateMegaMillionsResultsAsync([TimerTrigger(typeof(MegaMillionsResultsSchedule))] TimerInfo timerInfo) { await Updates.UpdateMegaMillionResults(); }
public static async Task UpdateMegaMillionsJackpotsAsync([TimerTrigger(typeof(MegaMillionsJackpotSchedule))] TimerInfo timerInfo) { await Updates.UpdateMegaMillionJackpot(); }