Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 31007 |
amit.gupta |
1 |
package com.spice.profitmandi.service;
|
|
|
2 |
|
|
|
3 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
|
|
4 |
import com.spice.profitmandi.common.model.CustomRetailer;
|
|
|
5 |
import org.springframework.stereotype.Service;
|
|
|
6 |
|
|
|
7 |
@Service
|
|
|
8 |
public interface SellerService {
|
|
|
9 |
|
|
|
10 |
CustomRetailer convertToSeller(String sellerPrefix) throws ProfitMandiBusinessException;
|
|
|
11 |
}
|