public async Task FullyUpdateData()
        {
            if (!string.IsNullOrEmpty(User.Identity.Name))
            {
                using (var context = new StructureContext())
                {
                    await Polling.FullyUpdateData(context);
                }
            }

            Response.Redirect("/Me/Notifications");
        }