Testing and fixing scheduler
This commit is contained in:
parent
20f4b371d1
commit
b2d9fb43b2
7 changed files with 44 additions and 51 deletions
|
@ -39,6 +39,12 @@ namespace WebsitePanel.EnterpriseServer
|
|||
|
||||
public class BackgroundTask
|
||||
{
|
||||
#region Fields
|
||||
|
||||
private List<BackgroundTaskParameter> parameters;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Properties
|
||||
|
||||
public int Id { get; set; }
|
||||
|
@ -83,7 +89,11 @@ namespace WebsitePanel.EnterpriseServer
|
|||
|
||||
public List<BackgroundTaskLogRecord> Logs { get; set; }
|
||||
|
||||
public List<BackgroundTaskParameter> Params { get; set; }
|
||||
public List<BackgroundTaskParameter> Params
|
||||
{
|
||||
get { return parameters ?? (parameters = new List<BackgroundTaskParameter>()); }
|
||||
set { parameters = value; }
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue