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