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