private string customerName;
private string customerEmail;
private DateTime dateOfBirth;
private string customerAddress;
public DateTime DateOfBirth
public void SetAddress(string address)
customerAddress = address;
public static void Main(string[] args)
Customer customer = new Customer();
customer.Email = "Alim@gmail.com";
DateTime dateOfBirth = new DateTime(1999, 9, 18);
customer.DateOfBirth = dateOfBirth;
customer.SetAddress("Banani");
string name = customer.Name;
string email = customer.Email;
DateTime dob = customer.DateOfBirth;
Console.WriteLine(email);