2019-09-04 18:09:20 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nifm.StaticService.GeneralService
|
2019-09-04 18:09:20 +02:00
|
|
|
|
{
|
|
|
|
|
static class GeneralServiceManager
|
|
|
|
|
{
|
|
|
|
|
private static List<GeneralServiceDetail> _generalServices = new List<GeneralServiceDetail>();
|
|
|
|
|
|
|
|
|
|
public static int Count
|
|
|
|
|
{
|
|
|
|
|
get => _generalServices.Count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Add(GeneralServiceDetail generalServiceDetail)
|
|
|
|
|
{
|
|
|
|
|
_generalServices.Add(generalServiceDetail);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Remove(int index)
|
|
|
|
|
{
|
|
|
|
|
_generalServices.RemoveAt(index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static GeneralServiceDetail Get(int clientId)
|
|
|
|
|
{
|
|
|
|
|
return _generalServices.First(item => item.ClientId == clientId);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|