16 lines
359 B
C#
16 lines
359 B
C#
using System.Windows;
|
|
|
|
namespace CheckersSpielBot
|
|
{
|
|
public partial class HistoryDialog : Window
|
|
{
|
|
public HistoryDialog()
|
|
{
|
|
InitializeComponent();
|
|
|
|
var db = new DatabaseService();
|
|
var history = db.GetHistory(PlayerSession.PlayerId);
|
|
HistoryGrid.ItemsSource = history;
|
|
}
|
|
}
|
|
} |