12 lines
227 B
Java
12 lines
227 B
Java
package example.service;
|
|
|
|
import example.repo.Customer1391Repository;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class Customer1391Service {
|
|
public Customer1391Service(Customer1391Repository repo) {
|
|
}
|
|
}
|