[JAVA-13264] Add missing classes
This commit is contained in:
parent
ce2ecef1e7
commit
ef07ee6cac
|
@ -0,0 +1,7 @@
|
|||
package com.baeldung.constructordi.service;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public class UserRepository {
|
||||
}
|
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue