Add FullName to CustomerDto

This commit is contained in:
Loretta 2025-09-17 05:31:49 +02:00
parent 5e2c30a4ec
commit b0a99e139b
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,8 @@ public class CustomerDto : ModelDtoBase<Customer>, ISoftDeletedEntity
public string FirstName { get; set; }
public string LastName { get; set; }
public string FullName => $"{LastName} {FirstName}";
public bool Deleted { get; set; }
public CustomerDto() :base()