public class MovieConverter {
public static MovieVO convert(MovieEntity userEntity) {
MovieVO movieVO = new MovieVO();
movieVO.setId(userEntity.getId());
movieVO.setTitle(userEntity.getTitle());
movieVO.setStartDate(userEntity.getStartDate().toDate());
movieVO.setEndDate(userEntity.getEndDate().toDate());
return movieVO;
}