This commit is contained in:
2021-07-20 19:52:18 +00:00
parent 89e3e96320
commit 87b7eee335
6 changed files with 50 additions and 18 deletions

View File

@@ -45,6 +45,7 @@ namespace AyaNova.Models
public long? FromQuoteId { get; set; }
public long? FromPMId { get; set; }
public long? FromCSRId { get; set; }
public DateTime CreatedDate { get; set; } = DateTime.UtcNow;
public DateTime? ServiceDate { get; set; }
public DateTime? CompleteByDate { get; set; }
public TimeSpan DurationToCompleted { get; set; } = TimeSpan.Zero;
@@ -119,6 +120,8 @@ namespace AyaNova.Models
//workaround for notification
[NotMapped, JsonIgnore]
public string Name { get; set; }
}//eoc
}//eons