74 lines
1.8 KiB
C#
74 lines
1.8 KiB
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Newtonsoft.Json;
|
|
using AyaNova.Biz;
|
|
|
|
namespace AyaNova.Models
|
|
{
|
|
|
|
//Data transfer no child collections
|
|
public class dtWorkOrder : ICoreBizObjectModel
|
|
{
|
|
public dtWorkOrder()
|
|
{
|
|
Tags = new List<string>();
|
|
}
|
|
|
|
public long Id { get; set; }
|
|
public uint Concurrency { get; set; }
|
|
|
|
[Required]
|
|
public long Serial { get; set; }
|
|
public bool Active { get; set; }
|
|
public string Notes { get; set; }
|
|
public string Wiki { get; set; }
|
|
public string CustomFields { get; set; }
|
|
public List<string> Tags { get; set; }
|
|
|
|
[NotMapped]
|
|
public AyaType AyaType { get => AyaType.WorkOrder; }
|
|
|
|
}//eoc
|
|
|
|
public class WorkOrder : ICoreBizObjectModel
|
|
{
|
|
public WorkOrder()
|
|
{
|
|
Tags = new List<string>();
|
|
|
|
//dependents
|
|
Items = new List<WorkOrderItem>();
|
|
}
|
|
|
|
public long Id { get; set; }
|
|
public uint Concurrency { get; set; }
|
|
|
|
[Required]
|
|
public long Serial { get; set; }
|
|
public bool Active { get; set; }
|
|
public string Notes { get; set; }
|
|
public string Wiki { get; set; }
|
|
public string CustomFields { get; set; }
|
|
public List<string> Tags { get; set; }
|
|
|
|
//dependents
|
|
public List<WorkOrderItem> Items { get; set; }
|
|
|
|
|
|
[NotMapped]
|
|
public string Name
|
|
{
|
|
//Used by notification processor
|
|
get
|
|
{
|
|
return this.Serial.ToString();
|
|
}
|
|
}
|
|
|
|
[NotMapped]
|
|
public AyaType AyaType { get => AyaType.WorkOrder; }
|
|
}//eoc
|
|
|
|
}//eons
|