public static Movie GetMovieByName(string name) { try { return(MovieController.GetByName(name)); } catch (Exception e) { return(new Movie()); } }