using System; using CsvHelper.Configuration; using CsvHelper; using Splat; namespace StarsAssistant.Services; public class CSVDataLoader { /// /// Reference to the game metadata, retrieved by DI /// protected Model.Game game; public CSVDataLoader() { game = Locator.Current.GetService()!; } }