Align .editorconfig files Move Controller logic to DMO classes GlobalVars.AppSettings = Models.AppSettings.GetFromConfigurationManager(); Question EditorConfig Project level editorconfig Format White Spaces AppSetting when EnvironmentVariable not set Corrective Actions Tests Schedule Actions Tests DMO Tests Controller Tests Get ready to use VSCode IDE
32 lines
741 B
C#
32 lines
741 B
C#
using System.Collections.Generic;
|
|
|
|
using Fab2ApprovalSystem.Models;
|
|
|
|
namespace Fab2ApprovalSystem.Misc;
|
|
|
|
public class DemoHelper {
|
|
|
|
public static List<string> GetCountries() {
|
|
return new List<string>
|
|
{
|
|
"USA", "England", "Belguim", "France", "Italy"
|
|
};
|
|
}
|
|
|
|
public List<TestModel> 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<string>();
|
|
A1.Countries.Add("England");
|
|
A1.Countries.Add("Belguim");
|
|
ListOfModels.Add(A1);
|
|
}
|
|
|
|
} |