En första justering , det fanns många referenser kvar till GreadyPoang...

This commit is contained in:
2025-10-11 08:45:09 +02:00
parent 5d1e7858f2
commit 18f0dc566b
96 changed files with 239 additions and 236 deletions

View File

@ -1,4 +1,4 @@
namespace GreadyPoang.Core;
namespace Gready_Poang.Core;
public interface INavigationService
{

View File

@ -1,4 +1,4 @@
namespace GreadyPoang.Core;
namespace Gready_Poang.Core;
public interface IPageFactory
{

View File

@ -1,5 +1,5 @@

namespace GreadyPoang.Core;
namespace Gready_Poang.Core;
public interface ISplashService
{

View File

@ -1,6 +1,6 @@
using Common.Library;
namespace GreadyPoang.ViewModelLayer;
namespace Gready_Poang.ViewModelLayer;
public class AppShellViewModel : ViewModelBase
{

View File

@ -1,7 +1,7 @@
using Common.Library;
using GreadyPoang.Services;
using Gready_Poang.Services;
namespace GreadyPoang.ViewModelLayer;
namespace Gready_Poang.ViewModelLayer;
public class MainPageViewModel : ViewModelBase
{

View File

@ -1,8 +1,8 @@
using Common.Library;
using GreadyPoang.EntityLayer;
using Gready_Poang.EntityLayer;
using System.Collections.ObjectModel;
namespace GreadyPoang.ViewModelLayer;
namespace Gready_Poang.ViewModelLayer;
public class MethodSharingService : ViewModelBase, IMethodSharingService<Participant>
{

View File

@ -1,10 +1,10 @@
using Common.Library;
using GreadyPoang.EntityLayer;
using GreadyPoang.Services;
using Gready_Poang.EntityLayer;
using Gready_Poang.Services;
using System.Collections.ObjectModel;
namespace GreadyPoang.ViewModelLayer;
namespace Gready_Poang.ViewModelLayer;
public class ParticipantViewModel : ViewModelBase
{

View File

@ -1,12 +1,12 @@
using Common.Library;
using GreadyPoang.Core;
using GreadyPoang.DataLayer;
using GreadyPoang.EntityLayer;
using GreadyPoang.Services;
using Gready_Poang.Core;
using Gready_Poang.DataLayer;
using Gready_Poang.EntityLayer;
using Gready_Poang.Services;
using System.Collections.ObjectModel;
using System.Diagnostics;
namespace GreadyPoang.ViewModelLayer;
namespace Gready_Poang.ViewModelLayer;
public class RoundRunningViewModel : ViewModelBase
{
@ -142,6 +142,7 @@ public class RoundRunningViewModel : ViewModelBase
var localElements = _combined.roundBuilderElementsTotalById(_objectMessage.CurrentGroup.GameRoundId);
FillupResultTable(localElements);
foreach (var col in _playerColumns)
{
RoundElements.FirstOrDefault(e => e.ParticipantId == col.PlayerId).GameRegPoints = col.PlayerPoints;
@ -270,7 +271,9 @@ public class RoundRunningViewModel : ViewModelBase
{
var player = new PlayerColumn
{
PlayerName = element.ParticipantName
PlayerName = element.ParticipantName,
PlayerId = element.ParticipantId,
PlayerPoints = 0
};
for (int i = 0; i < slumper.Next(6); i++)

View File

@ -1,12 +1,12 @@
using Common.Library;
using GreadyPoang.Core;
using GreadyPoang.DataLayer;
using GreadyPoang.EntityLayer;
using GreadyPoang.Services;
using Gready_Poang.Core;
using Gready_Poang.DataLayer;
using Gready_Poang.EntityLayer;
using Gready_Poang.Services;
using System.Collections.ObjectModel;
using System.Diagnostics;
namespace GreadyPoang.ViewModelLayer;
namespace Gready_Poang.ViewModelLayer;
public class RoundStartingViewModel : ViewModelBase
{

View File

@ -1,6 +1,6 @@
using Common.Library;
namespace GreadyPoang.ViewModelLayer;
namespace Gready_Poang.ViewModelLayer;
public class SplashViewModel : ViewModelBase
{