// ReSharper restore UnusedParameter.Local
        // ReSharper disable UnusedParameter.Local
        private static void OnGetFixtures(object sender, DoWorkEventArgs doWorkEventArgs, Context context)
        {
            var fixtures = FootballService.GetFixtures(TeamId);

            if (fixtures == null) return;

            var notifications = new Notifications(context);
            notifications.DisplayNotificationIfNextGameIsToday(fixtures);
        }
 public MainActivity()
 {
     _notifications = new Notifications(this);
 }