public IHttpActionResult Get()
        {
            var model = _companyCarRepository.GetAll();

            return(Ok(model));
        }