public async Task <IActionResult> GetMakers()
        {
            try
            {
                var makers = await makeService.GetAllMakeAsync();

                var mapped = mapper.Map <IEnumerable <VehicleMakeBaseDto> >(makers);
                return(Ok(mapped));
            }
            catch (Exception)
            {
                return(NotFound());
            }
        }