public class CustomerInfo
{
private int _customerid;
private string _firstname;
private string _surname;
private string _customeraddress;
private string _customertelephone;
private string _customermobile;
private string _customeremail;
private int _addressproofid;
private string _addressproofname;
private int _idproofid;
private string _idproofname;
private Boolean _cflag;
public int CustomerId
{
get { return _customerid; }
set { _customerid = value; }
}
public string FirstName
{
get { return _firstname; }
set { _firstname = value; }
}
public string SurName
{
get { return _surname; }
set { _surname = value; }
}
public string CustomerAddrees
{
get { return _customeraddress; }
set { _customeraddress = value; }
}
public string CustomerTelephone
{
get { return _customertelephone; }
set { _customertelephone = value; }
}
public string CustomerMobile
{
get { return _customermobile; }
set { _customermobile = value; }
}
public string CustomerEmail
{
get{return _customeremail;}
set{_customeremail=value;}
}
public int AddressProofId
{
get{return _addressproofid;}
set{_addressproofid=value;}
}
public string AddressProofName
{
get{return _addressproofname;}
set{_addressproofname=value;}
}
public int IdProofId
{
get{return _idproofid;}
set{_idproofid=value;}
}
public string IdProofName
{
get { return _idproofname; }
set { _idproofname = value; }
}
public Boolean CFlag
{
get { return _cflag; }
set { _cflag = value; }
}
}
Saturday, March 20, 2010
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment