logic
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user