Skip to content

Commit

Permalink
Merge pull request #681 from bcgov/BCPSDEMS-2074-vr-courts
Browse files Browse the repository at this point in the history
Bcpsdems 2074 vr courts
  • Loading branch information
leewrigh authored Oct 28, 2024
2 parents 91f7be6 + 556fb98 commit 76e1d4c
Show file tree
Hide file tree
Showing 10 changed files with 5,315 additions and 3 deletions.
18 changes: 18 additions & 0 deletions backend/CommonModels/Models/Party/PartyDetailModel.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
namespace CommonModels.Models.Party;
using System;

public class PartyDetailModel
{
public int Id { get; set; }
public Guid UserId { get; set; }
public string? Jpdid { get; set; }
public DateOnly? Birthdate { get; set; }
public string? Gender { get; set; }
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public string? PreferredFirstName { get; set; }
public string? PreferredMiddleName { get; set; }
public string? PreferredLastName { get; set; }
public string? Email { get; set; }
public string? Phone { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,8 @@ public async Task<CaseModel> FindCase(CaseLookupQuery query)
{
Log.Error($"Failed to get primary case for RCC number {query.RCCNumber} for party {query.partyId}");
}
}
}

}
}
Expand Down
Loading

0 comments on commit 76e1d4c

Please sign in to comment.