12 lines
219 B
Java
12 lines
219 B
Java
package example.service;
|
|
|
|
import example.repo.Customer19Repository;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class Customer19Service {
|
|
public Customer19Service(Customer19Repository repo) {
|
|
}
|
|
}
|