Add WPFUi to prevent stuck state

Add Range to TournamentService
Use DataTable to export CSV
DataTable can be ordered on Total
This commit is contained in:
2019-05-31 23:34:34 +02:00
parent 3d73071925
commit 21713fed69
7 changed files with 227 additions and 114 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace LaDOSE.DTO
{
public class TimeRangeDTO
{
public DateTime? From { get; set; }
public DateTime? To { get; set; }
}
}