Added firstName and lastName to the userModel

This commit is contained in:
Dominic Villemure
2024-04-09 23:46:46 -04:00
parent 49a10198e4
commit 6dc85438bf
3 changed files with 8 additions and 2 deletions

View File

@@ -39,6 +39,8 @@ public class UserService(UserManager<ApplicationUser> userManager) : IUserServic
{
Id = response.Id,
UserName = response.UserName,
FirstName = response.FirstName,
LastName = response.LastName,
Email = response.Email
};
@@ -55,6 +57,8 @@ public class UserService(UserManager<ApplicationUser> userManager) : IUserServic
{
Id = response.Id,
UserName = response.UserName,
FirstName = response.FirstName,
LastName = response.LastName,
Email = response.Email
};