12 lines
241 B
Java
12 lines
241 B
Java
|
|
package com.ai.da.service;
|
||
|
|
|
||
|
|
import javax.servlet.http.HttpServletRequest;
|
||
|
|
import javax.servlet.http.HttpServletResponse;
|
||
|
|
|
||
|
|
public interface StripeService {
|
||
|
|
|
||
|
|
String pay(Integer quantity);
|
||
|
|
|
||
|
|
Boolean notify(HttpServletRequest request);
|
||
|
|
}
|