Choose the layer that best matches the component below.
Java
@Service
public class MovieService {
private final MovieRepository movieRepository;
@Autowired
public MovieService(MovieRepository movieRepository) {
this.movieRepository = movieRepository;
}
}
Kotlin
@Service
class MovieService(private val movieRepository: MovieRepository) {
}