PCRB follow up client side logic
This commit is contained in:
@ -8,9 +8,21 @@ public class PCRB {
|
||||
"PCR1",
|
||||
"PCR2",
|
||||
"PCR3",
|
||||
"Complete"
|
||||
"Complete",
|
||||
"Follow Up",
|
||||
"Closed"
|
||||
];
|
||||
|
||||
public enum StagesEnum {
|
||||
Draft = 0,
|
||||
PCR1 = 1,
|
||||
PCR2 = 2,
|
||||
PCR3 = 3,
|
||||
Complete = 4,
|
||||
FollowUp = 5,
|
||||
Closed = 6
|
||||
}
|
||||
|
||||
public int PlanNumber { get; set; }
|
||||
public int OwnerID { get; set; }
|
||||
public string OwnerName { get; set; } = "";
|
||||
@ -24,4 +36,5 @@ public class PCRB {
|
||||
public DateTime LastUpdateDate { get; set; } = DateTimeUtilities.MIN_DT;
|
||||
public DateTime ClosedDate { get; set; } = DateTimeUtilities.MAX_DT;
|
||||
public string Type { get; set; } = "";
|
||||
public IEnumerable<PCRBFollowUp> FollowUps { get; set; } = new List<PCRBFollowUp>();
|
||||
}
|
Reference in New Issue
Block a user