public IResult Add(IFormFile file, Image image)
        {
            var check = BusinessRules.Run(CheckImageLimit(image.CarId), CheckTheCarExists(image.CarId));

            if (check != null)
            {
                return(check);
            }

            image.ImagePath = FormFileHelper.Add(file);
            image.Date      = DateTime.Now;
            _imageDal.Add(image);
            return(new SuccessResult(Messages.ImageAdded));
        }