Esempio n. 1
0
 // Constructors
 public CallHistoryTest(CallHistory callHistory)
 {
     this.callHistory = callHistory;
 }
Esempio n. 2
0
        // Constructors
        public Gsm(string model, string manufacturer, string owner = null,
            decimal? price = null, Display display = null, Battery battery = null)
        {
            this.Model = model;
            this.Manufacturer = manufacturer;
            this.Owner = owner;
            this.Price = price;
            this.Display = display;
            this.Battery = battery;

            this.CallHistory = new CallHistory();
        }