Subversion Repositories SmartDukaan

Rev

Rev 20529 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20427 kshitij.so 1
package com.hotspotstore.controllers;
2
 
3
import com.hotspotstore.storage.Mongo;
4
 
5
 
6
public class ContactUsController extends BaseController{
7
 
8
	/**
9
	 * 
10
	 */
11
	private static final long serialVersionUID = 1L;
12
	private String result;
13
 
14
 
15
	public String getResult() {
16
		return result;
17
	}
18
 
19
	public void setResult(String result) {
20
		this.result = result;
21
	}
22
 
23
	public String index(){
24
		return "index";
25
	}
26
 
27
	public String create(){
28
		return "index";
29
	}
30
 
31
 
32
}