Example #1
0
        static void Main(string[] args)
        {
            CustomerInformation customerInformation1 = new CustomerInformation();

            customerInformation1.Id      = "2545";
            customerInformation1.Name    = "Esra";
            customerInformation1.SurName = "Bulut";
            customerInformation1.Age     = 26;

            Console.WriteLine(customerInformation1.Id + " " + customerInformation1.Name + " " + customerInformation1.SurName + " " + customerInformation1.Age);

            CustomerManager customerManager = new CustomerManager();

            customerManager.Uploaded(customerInformation1);
            customerManager.Add(customerInformation1);
            customerManager.Completed(customerInformation1);
        }
Example #2
0
 public void Add(CustomerInformation customerInformation)
 {
     Console.WriteLine(customerInformation.Id + " " + "Eklendi.");
 }
Example #3
0
 public void Completed(CustomerInformation customerInformation)
 {
     Console.WriteLine(customerInformation.Age + " " + "Tamamlandı.");
 }
Example #4
0
 public void Uploaded(CustomerInformation customerInformation)
 {
     Console.WriteLine(customerInformation.Name + customerInformation.SurName + " " + "Yüklendi.");
 }