moved database primary keys to guids

This commit is contained in:
2026-02-20 20:24:57 -08:00
parent b7a78b7bb9
commit da4320f26e
14 changed files with 58 additions and 50 deletions
@@ -2,8 +2,8 @@ namespace WinStudentGoalTracker.DataAccess;
public class CreateStudentDto
{
public required int IdStudent { get; set; }
public int? IdProgram { get; set; }
public required Guid IdStudent { get; set; }
public Guid? IdProgram { get; set; }
public string? Identifier { get; set; }
public int? ProgramYear { get; set; }
public DateTime? EnrollmentDate { get; set; }