Compare commits

..

No commits in common. "41b084ade40a756c65b4c17248c8fad818419dc9" and "03bc3aa976dce4975f7eb4f841d90b08e4630e7d" have entirely different histories.

2 changed files with 0 additions and 50 deletions

View File

@ -1,36 +0,0 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AyCode.Interfaces.Entities;
using AyCode.Interfaces.TimeStampInfo;
namespace TIAM.Entities.Drivers
{
public enum CarMotorType : byte
{
Gas = 5,
Diesel = 10,
Electric = 15,
}
public class Car : IEntityGuid, ITimeStampModified
{
public Guid Id { get; set; }
public string LicencePlate { get; set; }
public string Color { get; set; }
public string Manufacture{ get; set; }
public string Model { get; set; }
public int YearOfMake { get; set; }
public int SeetNumber { get; set; }
public CarMotorType CarMotorType { get; set; }
public DateTime Modified { get; set; }
public DateTime Created { get; set; }
}
}

View File

@ -1,14 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TIAM.Entities.Drivers;
namespace TIAM.Models.Drivers
{
public class DriverModel
{
public List<Car> Cars { get; set; }
}
}