fuelly import but can only import one csv per car.
This commit is contained in:
18
Models/ImportModel.cs
Normal file
18
Models/ImportModel.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace CarCareTracker.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// Import model used for importing Gas records.
|
||||
/// </summary>
|
||||
public class ImportModel
|
||||
{
|
||||
public string Date { get; set; }
|
||||
public string Odometer { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string Notes { get; set; }
|
||||
public string FuelConsumed { get; set; }
|
||||
public string Cost { get; set; }
|
||||
public string Price { get; set; }
|
||||
public string PartialFuelUp { get; set; }
|
||||
public string IsFillToFull { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
namespace CarCareTracker.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// Import model used for importing Gas records.
|
||||
/// </summary>
|
||||
public class GasRecordImport
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
public int Odometer { get; set; }
|
||||
public decimal FuelConsumed { get; set; }
|
||||
public decimal Cost { get; set; }
|
||||
}
|
||||
/// <summary>
|
||||
/// Import model used for importing Service and Repair records.
|
||||
/// </summary>
|
||||
public class ServiceRecordImport
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
public int Odometer { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string Notes { get; set; }
|
||||
public decimal Cost { get; set; }
|
||||
}
|
||||
/// <summary>
|
||||
/// Import model used for importing tax records.
|
||||
/// </summary>
|
||||
public class TaxRecordImport
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string Notes { get; set; }
|
||||
public decimal Cost { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user