added extra fields attribute to object classes.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-02-11 19:08:27 -07:00
parent 50b88dd7a1
commit c5c0a6900b
13 changed files with 28 additions and 10 deletions

View File

@@ -128,7 +128,8 @@ namespace CarCareTracker.Helper
Mileage = input.Mileage, Mileage = input.Mileage,
Files = input.Files, Files = input.Files,
Notes = input.Notes, Notes = input.Notes,
Tags = input.Tags Tags = input.Tags,
ExtraFields = input.ExtraFields
}; };
} }
public static CollisionRecord GenericToRepairRecord(GenericRecord input) public static CollisionRecord GenericToRepairRecord(GenericRecord input)
@@ -142,7 +143,8 @@ namespace CarCareTracker.Helper
Mileage = input.Mileage, Mileage = input.Mileage,
Files = input.Files, Files = input.Files,
Notes = input.Notes, Notes = input.Notes,
Tags = input.Tags Tags = input.Tags,
ExtraFields = input.ExtraFields
}; };
} }
public static UpgradeRecord GenericToUpgradeRecord(GenericRecord input) public static UpgradeRecord GenericToUpgradeRecord(GenericRecord input)
@@ -156,7 +158,8 @@ namespace CarCareTracker.Helper
Mileage = input.Mileage, Mileage = input.Mileage,
Files = input.Files, Files = input.Files,
Notes = input.Notes, Notes = input.Notes,
Tags = input.Tags Tags = input.Tags,
ExtraFields = input.ExtraFields
}; };
} }

View File

@@ -12,6 +12,7 @@
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<SupplyUsage> Supplies { get; set; } = new List<SupplyUsage>(); public List<SupplyUsage> Supplies { get; set; } = new List<SupplyUsage>();
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public CollisionRecord ToCollisionRecord() { return new CollisionRecord { Id = Id, VehicleId = VehicleId, Date = DateTime.Parse(Date), Cost = Cost, Mileage = Mileage, Description = Description, Notes = Notes, Files = Files, Tags = Tags }; } public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
public CollisionRecord ToCollisionRecord() { return new CollisionRecord { Id = Id, VehicleId = VehicleId, Date = DateTime.Parse(Date), Cost = Cost, Mileage = Mileage, Description = Description, Notes = Notes, Files = Files, Tags = Tags, ExtraFields = ExtraFields }; }
} }
} }

View File

@@ -19,5 +19,6 @@
public string Notes { get; set; } public string Notes { get; set; }
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
} }
} }

View File

@@ -19,6 +19,7 @@
public string Notes { get; set; } public string Notes { get; set; }
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
public GasRecord ToGasRecord() { return new GasRecord { public GasRecord ToGasRecord() { return new GasRecord {
Id = Id, Id = Id,
Cost = Cost, Cost = Cost,
@@ -30,7 +31,8 @@
IsFillToFull = IsFillToFull, IsFillToFull = IsFillToFull,
MissedFuelUp = MissedFuelUp, MissedFuelUp = MissedFuelUp,
Notes = Notes, Notes = Notes,
Tags = Tags Tags = Tags,
ExtraFields = ExtraFields
}; } }; }
} }
} }

View File

@@ -11,5 +11,6 @@
public string Notes { get; set; } public string Notes { get; set; }
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<string> Tags { get; set;} = new List<string>(); public List<string> Tags { get; set;} = new List<string>();
public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
} }
} }

View File

@@ -9,5 +9,6 @@
public string Notes { get; set; } public string Notes { get; set; }
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
} }
} }

View File

@@ -9,6 +9,7 @@
public string Notes { get; set; } public string Notes { get; set; }
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public OdometerRecord ToOdometerRecord() { return new OdometerRecord { Id = Id, VehicleId = VehicleId, Date = DateTime.Parse(Date), Mileage = Mileage, Notes = Notes, Files = Files, Tags = Tags }; } public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
public OdometerRecord ToOdometerRecord() { return new OdometerRecord { Id = Id, VehicleId = VehicleId, Date = DateTime.Parse(Date), Mileage = Mileage, Notes = Notes, Files = Files, Tags = Tags, ExtraFields = ExtraFields }; }
} }
} }

View File

@@ -12,6 +12,7 @@
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<SupplyUsage> Supplies { get; set; } = new List<SupplyUsage>(); public List<SupplyUsage> Supplies { get; set; } = new List<SupplyUsage>();
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public ServiceRecord ToServiceRecord() { return new ServiceRecord { Id = Id, VehicleId = VehicleId, Date = DateTime.Parse(Date), Cost = Cost, Mileage = Mileage, Description = Description, Notes = Notes, Files = Files, Tags = Tags }; } public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
public ServiceRecord ToServiceRecord() { return new ServiceRecord { Id = Id, VehicleId = VehicleId, Date = DateTime.Parse(Date), Cost = Cost, Mileage = Mileage, Description = Description, Notes = Notes, Files = Files, Tags = Tags, ExtraFields = ExtraFields }; }
} }
} }

View File

@@ -34,5 +34,6 @@
public string Notes { get; set; } public string Notes { get; set; }
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
} }
} }

View File

@@ -13,6 +13,7 @@
public string Notes { get; set; } public string Notes { get; set; }
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
public SupplyRecord ToSupplyRecord() { return new SupplyRecord { public SupplyRecord ToSupplyRecord() { return new SupplyRecord {
Id = Id, Id = Id,
VehicleId = VehicleId, VehicleId = VehicleId,
@@ -24,7 +25,8 @@
Description = Description, Description = Description,
Notes = Notes, Notes = Notes,
Files = Files, Files = Files,
Tags = Tags Tags = Tags,
ExtraFields = ExtraFields
}; } }; }
} }
} }

View File

@@ -13,5 +13,6 @@
public int CustomMonthInterval { get; set; } = 0; public int CustomMonthInterval { get; set; } = 0;
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
} }
} }

View File

@@ -13,6 +13,7 @@
public int CustomMonthInterval { get; set; } = 0; public int CustomMonthInterval { get; set; } = 0;
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
public TaxRecord ToTaxRecord() { return new TaxRecord { public TaxRecord ToTaxRecord() { return new TaxRecord {
Id = Id, Id = Id,
VehicleId = VehicleId, VehicleId = VehicleId,
@@ -24,7 +25,8 @@
RecurringInterval = RecurringInterval, RecurringInterval = RecurringInterval,
CustomMonthInterval = CustomMonthInterval, CustomMonthInterval = CustomMonthInterval,
Files = Files, Files = Files,
Tags = Tags Tags = Tags,
ExtraFields = ExtraFields
}; } }; }
} }
} }

View File

@@ -12,6 +12,7 @@
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>(); public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<SupplyUsage> Supplies { get; set; } = new List<SupplyUsage>(); public List<SupplyUsage> Supplies { get; set; } = new List<SupplyUsage>();
public List<string> Tags { get; set; } = new List<string>(); public List<string> Tags { get; set; } = new List<string>();
public UpgradeRecord ToUpgradeRecord() { return new UpgradeRecord { Id = Id, VehicleId = VehicleId, Date = DateTime.Parse(Date), Cost = Cost, Mileage = Mileage, Description = Description, Notes = Notes, Files = Files, Tags = Tags }; } public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
public UpgradeRecord ToUpgradeRecord() { return new UpgradeRecord { Id = Id, VehicleId = VehicleId, Date = DateTime.Parse(Date), Cost = Cost, Mileage = Mileage, Description = Description, Notes = Notes, Files = Files, Tags = Tags, ExtraFields = ExtraFields }; }
} }
} }