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