12 lines
223 B
Java
12 lines
223 B
Java
package example.service;
|
|
|
|
import example.repo.Customer420Repository;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class Customer420Service {
|
|
public Customer420Service(Customer420Repository repo) {
|
|
}
|
|
}
|