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 10... Line 10...
10
import org.slf4j.Logger;
10
import org.slf4j.Logger;
11
import org.slf4j.LoggerFactory;
11
import org.slf4j.LoggerFactory;
12
import org.springframework.beans.factory.annotation.Autowired;
12
import org.springframework.beans.factory.annotation.Autowired;
13
import org.springframework.http.ResponseEntity;
13
import org.springframework.http.ResponseEntity;
14
import org.springframework.stereotype.Controller;
14
import org.springframework.stereotype.Controller;
-
 
15
import org.springframework.transaction.annotation.Transactional;
15
import org.springframework.web.bind.annotation.RequestMapping;
16
import org.springframework.web.bind.annotation.RequestMapping;
16
import org.springframework.web.bind.annotation.RequestMethod;
17
import org.springframework.web.bind.annotation.RequestMethod;
17
import org.springframework.web.bind.annotation.RequestParam;
18
import org.springframework.web.bind.annotation.RequestParam;
18
 
19
 
19
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
20
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
Line 22... Line 23...
22
import com.spice.profitmandi.dao.repository.BrandRepository;
23
import com.spice.profitmandi.dao.repository.BrandRepository;
23
import com.spice.profitmandi.web.req.Category;
24
import com.spice.profitmandi.web.req.Category;
24
import com.spice.profitmandi.web.util.ResponseSender;
25
import com.spice.profitmandi.web.util.ResponseSender;
25
 
26
 
26
@Controller
27
@Controller
-
 
28
@Transactional
27
public class BrandController {
29
public class BrandController {
28
 
30
 
29
	@Autowired
31
	@Autowired
30
	ResponseSender<?> responseSender;
32
	ResponseSender<?> responseSender;
31
	
33