More working tests.
[castle.git] / Samples / MonoRail / JSGenExample / Models / Customer.cs
blob2c0a727caaed077f8931c96c1e0ad5c5360ae2bc
1 namespace JSGenExample.Models
3 public class Customer
5 private int id;
6 private string name, email;
8 public Customer()
12 public Customer(int id, string name, string email)
14 this.id = id;
15 this.name = name;
16 this.email = email;
19 public int Id
21 get { return id; }
22 set { id = value; }
25 public string Name
27 get { return name; }
28 set { name = value; }
31 public string Email
33 get { return email; }
34 set { email = value; }