mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 09:57:37 +00:00
Changed grad date to next iep date
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user