Commit före flytt avStatusparameter från point till round

This commit is contained in:
2025-09-13 08:43:17 +02:00
parent a2d47debfe
commit b4898660f2
13 changed files with 226 additions and 34 deletions

View File

@ -13,7 +13,6 @@ public class GamePoint : EntityBase
_gameDate = DateTime.Now;
_gameRoundRegNr = 0;
_gameRegPoints = 0;
_pointStatus = GamePointStatus.New;
}
private int _gamePointId;
@ -22,7 +21,6 @@ public class GamePoint : EntityBase
private DateTime _gameDate;
private int _gameRoundRegNr;
private int _gameRegPoints;
private GamePointStatus _pointStatus;
[PrimaryKey]
[AutoIncrement]
@ -91,16 +89,6 @@ public class GamePoint : EntityBase
}
}
[Column("PointStatus")]
public GamePointStatus PointStatus
{
get { return _pointStatus; }
set
{
_pointStatus = value;
RaisePropertyChanged(nameof(PointStatus));
}
}
}