Subversion Repositories SmartDukaan

Rev

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

Rev 22927 Rev 23366
Line 50... Line 50...
50
	public String contactUs(HttpServletRequest request, Model model) throws Throwable{
50
	public String contactUs(HttpServletRequest request, Model model) throws Throwable{
51
		model.addAttribute("appContextPath", request.getContextPath());
51
		model.addAttribute("appContextPath", request.getContextPath());
52
		return "contact-us";
52
		return "contact-us";
53
	}
53
	}
54
	
54
	
-
 
55
	/*private List<PaymentOption> getPaymentOptions(int fofoId){
-
 
56
		List<Integer> paymentOptionIds = fofoPartnerPaymentOptionRepository.selectPaymentOptionIdsByFofoId(fofoId);
-
 
57
		if(paymentOptionIds.isEmpty()){
-
 
58
			return new ArrayList<>();
-
 
59
		}
-
 
60
		return paymentOptionRepository.selectByIds(new HashSet<>(paymentOptionIds));
-
 
61
	}*/
-
 
62
	
-
 
63
	
55
}
64
}