public IActionResult Get() { try { return(Ok(Mapper.Map <IEnumerable <MovieCastViewModel> >(_repository.GetMovieCast()))); } catch (Exception e) { //_logger.LogError($"Failed to get all trips: {e}"); return(BadRequest("Error occured")); } }