Subversion Repositories SmartDukaan

Rev

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

Rev 23568 Rev 35434
Line 23... Line 23...
23
import com.spice.profitmandi.dao.entity.dtr.Brand;
23
import com.spice.profitmandi.dao.entity.dtr.Brand;
24
import com.spice.profitmandi.dao.repository.dtr.BrandRepository;
24
import com.spice.profitmandi.dao.repository.dtr.BrandRepository;
25
import com.spice.profitmandi.web.req.Category;
25
import com.spice.profitmandi.web.req.Category;
26
 
26
 
27
@Controller
27
@Controller
28
@Transactional(rollbackFor=Throwable.class)
28
@Transactional(readOnly = true, rollbackFor = Throwable.class)
29
public class BrandController {
29
public class BrandController {
30
 
30
 
31
	@Autowired
31
	@Autowired
32
	private ResponseSender<?> responseSender;
32
	private ResponseSender<?> responseSender;
33
	
33