public static int GetJobTimer(string name) { var ret = 0; var value = AppSettingConfigurator.GetValueOrDefault($"mov3r:Job{name}Time"); int.TryParse(value, out ret); return(ret == 0 ? 5 : ret); }
public static string GetPathSolution() { return(AppSettingConfigurator.GetValueOrDefault("mov3r:Path", @"C:\Mov3rPrimaria")); }