using System.Collections.Generic;
internal interface IManageClients
public string MapToId(int v, string value);
public List<string> MapToValues(string x);
public List<string> Get(string v);
internal class ClientManager2 : IManageClients
public string MapToId(int v, string value)
throw new System.NotSupportedException();
public List<string> MapToValues(string x)
return x.Replace("a", "$").Split().ToList();
throw new System.NotSupportedException();
public List<string> Get(string v)
return v.Split().ToList();
internal class ClientManager1 : IManageClients
public string MapToId(int v, string value)
public List<string> MapToValues(string x)
throw new System.NotSupportedException();
throw new System.NotSupportedException();
public List<string> Get(string v)
return v.Split().ToList();
throw new System.NotSupportedException();