AzureTicker.Worker.BL.Notifier.SendBillNotifications C# (CSharp) Method

SendBillNotifications() public static method

public static SendBillNotifications ( ) : void
return void
        public static void SendBillNotifications()
        {
            using (INotificationRepository rep = new NotificationRepository())
            {
                var notifications = rep.List();
                foreach (var n in notifications)
                {
                    GetBillAndSendNotification(n);
                }
            }
        }