public List <CarTypeViewModel> GetAll()
        {
            var carTypes = _carTypeRepository.GetActiveCarTypes();

            return((from carType in carTypes
                    select new CarTypeViewModel()
            {
                Id = carType.Id,
                CreateTime = carType.CreateTime.ToString(CultureInfo.InvariantCulture),
                IsDeleted = carType.IsDeleted,
                Name = carType.Name
            }).ToList());
        }