Identify layer component

Report a typo

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) {

}
Select one option from the list
___

Create a free account to access the full topic