This commit is contained in:
2021-03-02 15:34:05 +00:00
parent 054f25efbe
commit c1cccba712
9 changed files with 58 additions and 18 deletions

View File

@@ -17,7 +17,7 @@ namespace AyaNova.Models
[Required]
public string Name { get; set; }
public string Notes { get; set; }
public string Wiki { get; set; }
public string CustomFields { get; set; }
@@ -26,15 +26,27 @@ namespace AyaNova.Models
public DateTime DateRequested { get; set; }
[Required]
public long CustomerId { get; set; }
[NotMapped]
public string CustomerViz { get; set; }
public long? UnitId { get; set; }
[NotMapped]
public string UnitViz { get; set; }
public long? WorkorderItemId { get; set; }
[NotMapped]
public string WorkorderItemViz { get; set; }
[Required]
public long RequestedByUserId { get; set; }
[NotMapped]
public string RequestedByUserViz { get; set; }
public string CustomerReferenceNumber { get; set; }
[Required]
public CustomerServiceRequestStatus Status { get; set; }
[NotMapped]
public string StatusViz { get; set; }
[Required]
public CustomerServiceRequestPriority Priority { get; set; }
[NotMapped]
public string PriorityViz { get; set; }
public CustomerServiceRequest()
{