Changed grad date to next iep date

This commit is contained in:
ivan-pelly
2026-03-11 19:48:16 -07:00
parent ec36d8842d
commit 7f91e2e557
25 changed files with 44 additions and 44 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ Content-Type: application/json
"identifier": "WIN-1001",
"programYear": 2026,
"enrollmentDate": "2026-01-15",
"expectedGrad": "2028-06-01"
"nextIepDate": "2028-06-01"
}
###
@@ -5,5 +5,5 @@ public class CreateStudentDto
public string? Identifier { get; set; }
public int? ProgramYear { get; set; }
public DateTime? EnrollmentDate { get; set; }
public DateTime? ExpectedGrad { get; set; }
public DateTime? NextIepDate { get; set; }
}
@@ -5,5 +5,5 @@ public class UpdateStudentDto
public string? Identifier { get; set; }
public int? ProgramYear { get; set; }
public DateTime? EnrollmentDate { get; set; }
public DateTime? ExpectedGrad { get; set; }
public DateTime? NextIepDate { get; set; }
}
@@ -7,6 +7,6 @@ public class dbStudent
public string? Identifier { get; set; }
public int? ProgramYear { get; set; }
public DateTime? EnrollmentDate { get; set; }
public DateTime? ExpectedGrad { get; set; }
public DateTime? NextIepDate { get; set; }
public DateTime? CreatedAt { get; set; }
}
@@ -50,7 +50,7 @@ public class StudentRepository
p_identifier = dto.Identifier,
p_program_year = dto.ProgramYear,
p_enrollment_date = dto.EnrollmentDate,
p_expected_grad = dto.ExpectedGrad
p_next_iep_date = dto.NextIepDate
},
commandType: CommandType.StoredProcedure);
@@ -68,7 +68,7 @@ public class StudentRepository
p_identifier = dto.Identifier,
p_program_year = dto.ProgramYear,
p_enrollment_date = dto.EnrollmentDate,
p_expected_grad = dto.ExpectedGrad
p_next_iep_date = dto.NextIepDate
},
commandType: CommandType.StoredProcedure);
return rowsAffected > 0;
@@ -4,7 +4,7 @@ public class StudentResponse
{
public Guid StudentId { get; set; }
public string? Identifier { get; set; }
public DateTime? ExpectedGradDate { get; set; }
public DateTime? NextIepDate { get; set; }
public DateTime? LastEntryDate { get; set; }
public int GoalCount { get; set; }
public int ProgressEventCount { get; set; }