public IActionResult GetAllCarsIsNotNull() { var result = _carManager.GetAllCarsIsNotNull(); if (result.Success) { return(Ok(result)); } return(BadRequest(result)); }