Added firstName and lastName to the userModel
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user