Commit före flytt avStatusparameter från point till round
This commit is contained in:
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user