Subversion Repositories SmartDukaan

Rev

Rev 21496 | Rev 21730 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21496 Rev 21702
Line 8... Line 8...
8
import org.slf4j.Logger;
8
import org.slf4j.Logger;
9
import org.slf4j.LoggerFactory;
9
import org.slf4j.LoggerFactory;
10
import org.springframework.beans.factory.annotation.Autowired;
10
import org.springframework.beans.factory.annotation.Autowired;
11
import org.springframework.http.ResponseEntity;
11
import org.springframework.http.ResponseEntity;
12
import org.springframework.stereotype.Controller;
12
import org.springframework.stereotype.Controller;
-
 
13
import org.springframework.transaction.annotation.Transactional;
13
import org.springframework.web.bind.annotation.RequestMapping;
14
import org.springframework.web.bind.annotation.RequestMapping;
14
import org.springframework.web.bind.annotation.RequestMethod;
15
import org.springframework.web.bind.annotation.RequestMethod;
15
import org.springframework.web.bind.annotation.RequestParam;
16
import org.springframework.web.bind.annotation.RequestParam;
16
 
17
 
17
import com.spice.profitmandi.common.ResponseCodeHolder;
18
import com.spice.profitmandi.common.ResponseCodeHolder;
Line 21... Line 22...
21
import com.spice.profitmandi.dao.repository.RetailerRepository;
22
import com.spice.profitmandi.dao.repository.RetailerRepository;
22
import com.spice.profitmandi.dao.repository.ShopRepository;
23
import com.spice.profitmandi.dao.repository.ShopRepository;
23
import com.spice.profitmandi.web.util.ResponseSender;
24
import com.spice.profitmandi.web.util.ResponseSender;
24
 
25
 
25
@Controller
26
@Controller
-
 
27
@Transactional
26
public class ShopController {
28
public class ShopController {
27
	
29
	
28
	@Autowired
30
	@Autowired
29
	ResponseSender<?> responseSender;
31
	ResponseSender<?> responseSender;
30
	
32