예제 #1
0
 public ProjectSchedule(ProjectStep step, DateTime estimatedCompleteDate, DateTime actualCompleteDate, string personInCharge)
 {
     Step = step;
     EstimatedCompleteDate = estimatedCompleteDate;
     ActualCompleteDate    = actualCompleteDate;
     PersonInCharge        = personInCharge;
 }
예제 #2
0
 public ProjectSchedule(ProjectStep step)
 {
     Step = step;
 }
예제 #3
0
 public ProjectSchedule(ProjectStep step, DateTime?estimatedCompleteDate)
 {
     Step = step;
     EstimatedCompleteDate = estimatedCompleteDate;
 }