using System.Collections.Generic; namespace Mhf.Server.Model { public class ClientLookup { private readonly List _clients; private readonly object _lock = new object(); public ClientLookup() { _clients = new List(); } /// /// Returns all Clients. /// public List GetAll() { lock (_lock) { return new List(_clients); } } /// /// Adds a Client. /// public void Add(MhfClient client) { if (client == null) { return; } lock (_lock) { _clients.Add(client); } } /// /// Removes the Client from all lists and lookup tables. /// public void Remove(MhfClient client) { lock (_lock) { _clients.Remove(client); } } /// /// Returns a Client by AccountId if it exists. /// public MhfClient GetByAccountId(int accountId) { List clients = GetAll(); foreach (MhfClient client in clients) { if (client.Account.Id == accountId) { return client; } } return null; } } }