using System.Collections.Generic; using Fab2ApprovalSystem.Models; namespace Fab2ApprovalSystem.Misc; public class DemoHelper { public static List GetCountries() { return new List { "USA", "England", "Belguim", "France", "Italy" }; } public List ListOfModels = new(); private static readonly DemoHelper m_dHelper = new(); public static DemoHelper Instance { get { return m_dHelper; } } private DemoHelper() { TestModel A1 = new(); A1.Name = "Eran"; A1.Countries = new List(); A1.Countries.Add("England"); A1.Countries.Add("Belguim"); ListOfModels.Add(A1); } }