[JAVA-13264] Add missing classes

This commit is contained in:
Haroon Khan 2022-07-12 21:00:42 +01:00
parent ce2ecef1e7
commit ef07ee6cac
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package com.baeldung.constructordi.service;
import org.springframework.stereotype.Repository;
@Repository
public class UserRepository {
}

View File

@ -0,0 +1,11 @@
package com.baeldung.constructordi.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class UserService {
@Autowired
private UserRepository userRepository;
}