Implement ContactName to transfer

This commit is contained in:
jozsef.b@aycode.com 2024-04-06 05:24:13 +02:00
parent 2c12f1a4c1
commit 018f12f0e4
2 changed files with 2 additions and 0 deletions

View File

@ -378,6 +378,7 @@ namespace TIAM.Database.Test
ToAddress = toAddress,
PassengerCount = 3,
Price = 20000,
ContactName = "xyztest",
ContactEmail = "xyztest@gmail.hu",
ContactPhone = "+3671542771",
TransferStatusType = TransferStatusType.OrderConfirmed,

View File

@ -38,6 +38,7 @@ public class Transfer: IEntityGuid, ITimeStampInfo, IProductForeignKey<Guid?>, I
[MaxLength(200)] public string FromAddress { get; set; }
[MaxLength(200)] public string? ToAddress { get; set; }
public string ContactName {get;set; }
public string ContactEmail {get;set; }
public string ContactPhone {get;set; }