Created monitoring object and refactored code accordingly.
This commit is contained in:
@@ -4,6 +4,16 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BodyshopUploader
|
||||
{
|
||||
public enum SourceSystem
|
||||
{
|
||||
Mitchell = 0,
|
||||
Audatex = 1,
|
||||
CCC = 2
|
||||
}
|
||||
}
|
||||
|
||||
namespace BodyshopUploader.Models
|
||||
{
|
||||
public class DTO_QueueItem : DTO_Base
|
||||
@@ -13,6 +23,13 @@ namespace BodyshopUploader.Models
|
||||
|
||||
}
|
||||
|
||||
private SourceSystem _source;
|
||||
public SourceSystem Source
|
||||
{
|
||||
get { return _source; }
|
||||
set { SetProperty(ref _source, value); }
|
||||
}
|
||||
|
||||
private dynamic _job;
|
||||
public dynamic Job
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user