Ejemplo n.º 1
0
 public Gsm(string model, string manufacturer, Batterys battery)
 {
     this.Model = model;
     this.Manufacturer = manufacturer;
     this.Battery = battery;
     this.CallHistory = new List<Call>();
 }
Ejemplo n.º 2
0
 public Gsm(string model, string manufacturer, Batterys battery)
 {
     this.Model        = model;
     this.Manufacturer = manufacturer;
     this.Battery      = battery;
     this.CallHistory  = new List <Call>();
 }
Ejemplo n.º 3
0
        public Gsm(string model, string manufacturer, float price, string owner,
                                                    Batterys battery, Displays display)
            : this(model, manufacturer, battery)
        {
            this.Price = price;
            this.Owner = owner;

            this.Display = display;
        }
Ejemplo n.º 4
0
        public Gsm(string model, string manufacturer, float price, string owner,
                   Batterys battery, Displays display)
            : this(model, manufacturer, battery)
        {
            this.Price = price;
            this.Owner = owner;

            this.Display = display;
        }
Ejemplo n.º 5
0
 public Gsm(string model, string manufacturer, float price, Batterys battery, Displays display)
     : this(model, manufacturer, price, null, battery, display)
 {
 }
Ejemplo n.º 6
0
 public Gsm(string model, string manufacturer, float price, Batterys battery, Displays display)
     : this(model, manufacturer, price, null, battery, display)
 {
 }