Subversion Repositories SmartDukaan

Rev

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

Rev 7226 Rev 7248
Line 1... Line 1...
1
package in.shop2020.serving.controllers;
1
package in.shop2020.serving.controllers;
2
 
2
 
3
public class PaymentDetailsController  extends BaseController {
3
public class PaymentDetailsController  extends BaseController {
4
    
4
    
-
 
5
    /**
-
 
6
     * 
-
 
7
     */
-
 
8
    private static final long serialVersionUID = 1L;
-
 
9
    private String name;
-
 
10
    private String phone;
5
    private String line1;
11
    private String line1;
6
    private String line2;
12
    private String line2;
7
    private String city;
13
    private String city;
8
    private String state;
14
    private String state;
9
    private String pincode;
15
    private String pincode;
10
    
16
    
-
 
17
    public String index() {
-
 
18
        return INDEX;
-
 
19
    }
-
 
20
    
11
    public String create(){
21
    public String create(){
12
        return index();
22
        return index();
13
    }
23
    }
14
 
24
 
15
    public String getLine1() {
25
    public String getLine1() {
Line 50... Line 60...
50
 
60
 
51
    public void setPincode(String pincode) {
61
    public void setPincode(String pincode) {
52
        this.pincode = pincode;
62
        this.pincode = pincode;
53
    }
63
    }
54
 
64
 
-
 
65
    public String getName() {
-
 
66
        return name;
-
 
67
    }
-
 
68
 
-
 
69
    public void setName(String name) {
-
 
70
        this.name = name;
-
 
71
    }
-
 
72
 
-
 
73
    public String getPhone() {
-
 
74
        return phone;
-
 
75
    }
-
 
76
 
-
 
77
    public void setPhone(String phone) {
-
 
78
        this.phone = phone;
-
 
79
    }
-
 
80
 
55
}
81
}