Subversion Repositories SmartDukaan

Rev

Rev 20530 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.hotspotstore.controllers;

import com.hotspotstore.storage.Mongo;


public class ContactUsController extends BaseController{

        /**
         * 
         */
        private static final long serialVersionUID = 1L;
        private String result;


        public String getResult() {
                return result;
        }

        public void setResult(String result) {
                this.result = result;
        }

        public String index(){
                return "index";
        }
        
        public String create(){
                return "index";
        }


}