This commit is contained in:
2012-11-30 21:35:06 -05:00
commit 3963d6363a
346 changed files with 351799 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
using System;
using AutoMapper;
using MileageTraker.Web.Models;
namespace MileageTraker.Web.ViewModels
{
public class LogIndexViewModel
{
public int? PreviousLogId { get; set; }
public int? PreviousLogEndOdometer { get; set; }
public int LogId { get; set; }
public string VehicleId { get; set; }
public int EndOdometer { get; set; }
public MileageLogTypeWrapper LogType { get; set; }
public string CityName { get; set; }
public string EmployeeName { get; set; }
public double GasPurchased { get; set; }
public DateTime Date { get; set; }
public DateTime Created { get; set; }
static LogIndexViewModel()
{
Mapper.CreateMap<Log, LogIndexViewModel>();
}
public LogIndexViewModel(Log log, Log previousLog)
{
Mapper.Map(log, this);
if (previousLog != null)
{
PreviousLogId = previousLog.LogId;
PreviousLogEndOdometer = previousLog.EndOdometer;
}
}
}
}