Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 31568 |
tejbeer |
1 |
package com.spice.profitmandi.dao.service.dtdc;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
import java.util.Map;
|
|
|
5 |
|
|
|
6 |
import org.springframework.stereotype.Service;
|
|
|
7 |
|
|
|
8 |
import com.spice.profitmandi.dao.model.BilledOrderListModel;
|
|
|
9 |
|
|
|
10 |
@Service
|
|
|
11 |
public interface DTDCService {
|
|
|
12 |
public List<BilledOrderListModel> getAirwayBillNo(Map<String, List<BilledOrderListModel>> airbillBilledOrderMap,
|
|
|
13 |
String emailId) throws Exception;
|
|
|
14 |
|
|
|
15 |
}
|