| Line 4... |
Line 4... |
| 4 |
import java.util.List;
|
4 |
import java.util.List;
|
| 5 |
import java.util.Set;
|
5 |
import java.util.Set;
|
| 6 |
|
6 |
|
| 7 |
import org.apache.commons.collections.CollectionUtils;
|
7 |
import org.apache.commons.collections.CollectionUtils;
|
| 8 |
import org.springframework.beans.factory.annotation.Autowired;
|
8 |
import org.springframework.beans.factory.annotation.Autowired;
|
| - |
|
9 |
import org.springframework.stereotype.Component;
|
| 9 |
|
10 |
|
| 10 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
11 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 11 |
import com.spice.profitmandi.dao.entity.fofo.RetailerTag;
|
12 |
import com.spice.profitmandi.dao.entity.fofo.RetailerTag;
|
| 12 |
import com.spice.profitmandi.dao.entity.fofo.TagListing;
|
13 |
import com.spice.profitmandi.dao.entity.fofo.TagListing;
|
| 13 |
import com.spice.profitmandi.dao.entity.user.Address;
|
14 |
import com.spice.profitmandi.dao.entity.user.Address;
|
| Line 16... |
Line 17... |
| 16 |
import com.spice.profitmandi.dao.repository.fofo.RetailerTagRepository;
|
17 |
import com.spice.profitmandi.dao.repository.fofo.RetailerTagRepository;
|
| 17 |
import com.spice.profitmandi.dao.repository.fofo.TagListingRepository;
|
18 |
import com.spice.profitmandi.dao.repository.fofo.TagListingRepository;
|
| 18 |
import com.spice.profitmandi.dao.repository.user.AddressRepository;
|
19 |
import com.spice.profitmandi.dao.repository.user.AddressRepository;
|
| 19 |
import com.spice.profitmandi.service.tag.TagService;
|
20 |
import com.spice.profitmandi.service.tag.TagService;
|
| 20 |
|
21 |
|
| - |
|
22 |
@Component
|
| 21 |
public class PricingServiceImpl implements PricingService{
|
23 |
public class PricingServiceImpl implements PricingService{
|
| 22 |
|
24 |
|
| 23 |
@Autowired
|
25 |
@Autowired
|
| 24 |
RetailerRegisteredAddressRepository retailerRegisteredAddressRepository;
|
26 |
RetailerRegisteredAddressRepository retailerRegisteredAddressRepository;
|
| 25 |
|
27 |
|