|
@@ -5,6 +5,24 @@ namespace EVCB_OCPP.Domain.Models.MainDb;
|
|
|
|
|
|
public partial class TransactionRecord
|
|
|
{
|
|
|
+ public TransactionRecord()
|
|
|
+ {
|
|
|
+ StartIdTag = string.Empty;
|
|
|
+ StopIdTag = string.Empty;
|
|
|
+ StartTime = new DateTime(1991, 1, 1);
|
|
|
+ StopTime = new DateTime(1991, 1, 1);
|
|
|
+ ReservationId = -1;
|
|
|
+ BillingDone = false;
|
|
|
+ CreatedOn = new DateTime(1991, 1, 1);
|
|
|
+ UpdatedOn = new DateTime(1991, 1, 1);
|
|
|
+ StartTransactionReportedOn = new DateTime(1991, 1, 1);
|
|
|
+ StopTransactionReportedOn = new DateTime(1991, 1, 1);
|
|
|
+ ErrorMsg = string.Empty;
|
|
|
+ StartSoc = string.Empty;
|
|
|
+ StopSoc = string.Empty;
|
|
|
+ Evccid = string.Empty;
|
|
|
+ NotifyPnC = false;
|
|
|
+ }
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public DateTime StartTime { get; set; }
|