public void RefreshCache() { //throw new NotImplementedException(); _tiradores.Clear(); string[] filenames = Directory.GetFiles(_storagePath, "*.json"); foreach (string filename in filenames) { string tiradorString = File.ReadAllText(filename); CTirador tirador = JsonConvert.DeserializeObject <CTirador>(tiradorString); _tiradores.Add(tirador); } }
public void SaveTirador(CTirador tirador) { throw new NotImplementedException(); }