CCT.NUI.StartMenu.Persistence.CsvRepository.CsvRepository C# (CSharp) Méthode

CsvRepository() public méthode

public CsvRepository ( string filePath ) : System
filePath string
Résultat System
        public CsvRepository(string filePath)
        {
            this.filePath = filePath;
            this.menus = new List<Menu>();
            this.Load();
        }