Implement ContactName to transfer
This commit is contained in:
parent
2c12f1a4c1
commit
018f12f0e4
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue