/// <summary>
 ///     Crea un nuevo objeto de tipo CharacterDataSourceJson
 /// </summary>
 /// <pre>true</pre>
 /// <post>returnValue != null</post>
 public CharacterDataCache(int max, ReplaceAlgorithm rep)
 {
     this.replaceAlgorithm = rep;
     characters = new CharacterCache[max];
     getDataService = new GetJsonService(this);
 }
 /// <summary>
 ///     Crea un nuevo objeto de tipo CharacterDataSourceJson
 /// </summary>
 /// <pre>true</pre>
 /// <post>returnValue != null</post>
 public CharacterDataWithoutCache()
 {
     getDataService = new GetJsonService(this);
 }