11 lines
221 B
Java
11 lines
221 B
Java
package example.service;
|
|
|
|
import example.repo.Customer100Repository;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class Customer100Service {
|
|
public Customer100Service(Customer100Repository repo) {}
|
|
}
|