Files
Disco/Disco.Web/Models/Job/ShowModel.cs
T
Gary Sharp 69c61a9b7d Feature: Plugin UI Extensions
Initially available for 'Job Show' action
2013-02-21 18:28:24 +11:00

30 lines
957 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Disco.BI.Extensions;
using Disco.Models.UI.Job;
using Disco.Web.Extensions;
namespace Disco.Web.Models.Job
{
public class ShowModel : JobShowModel
{
public Disco.Models.Repository.Job Job { get; set; }
public List<Disco.Models.Repository.DocumentTemplate> AvailableDocumentTemplates { get; set; }
public List<Disco.Models.Repository.JobSubType> UpdatableJobSubTypes { get; set; }
public List<SelectListItem> DocumentTemplatesSelectListItems
{
get
{
var list = new List<SelectListItem>();
list.Add(new SelectListItem() { Selected = true, Value = string.Empty, Text = "Generate Document" });
list.AddRange(this.AvailableDocumentTemplates.ToSelectListItems());
return list;
}
}
}
}