public ActionResult Users(int?id)
        {
            if (id != null)
            {
                server.BannedUser((int)id);
            }

            return(PartialView(server.GetAllAccounts()));
        }
 private void Banned_Click(object sender, RoutedEventArgs e)
 {
     _server.BannedUser((int)((Button)sender).DataContext); // возврат игрока из метода
     MessageBox.Show("Игрок забанен");
     LoadListUsers();
 }