using Disco.Data.Repository;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Disco.Models.BI.Job;
namespace Disco.Data.Configuration.Modules
{
public class JobPreferencesConfiguration : ConfigurationBase
{
public JobPreferencesConfiguration(DiscoDataContext Database) : base(Database) { }
public override string Scope { get { return "JobPreferences"; } }
///
/// Number of days a job is open before it is considered 'Long Running'
///
public int LongRunningJobDaysThreshold
{
get { return Get(7); }
set
{
if (value < 0)
throw new ArgumentOutOfRangeException("value", "The Long Running Job Days Threshold cannot be less than zero");
Set(value);
}
}
///
/// Number of minutes since the last recorded action is performed on a job before it is considered 'Stale'
///
public int StaleJobMinutesThreshold
{
get { return Get(60 * 24 * 2); } // Default to 48 Hours (2 days)
set
{
if (value < 0)
throw new ArgumentOutOfRangeException("value", "The Stale Job Minutes Threshold cannot be less than zero");
Set(value);
}
}
public LocationModes LocationMode
{
get { return GetFromEnum(LocationModes.Unrestricted); }
set { SetAsEnum(value); }
}
public List LocationList
{
get { return GetFromJson>(new List()); }
set { SetAsJson(value); }
}
}
}