Lab 2
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Cell_Phone_Inventory
|
||||
{
|
||||
class CellPhone
|
||||
{
|
||||
// Fields
|
||||
private string _brand; // The phone's brand
|
||||
private string _model; // The phone's model
|
||||
private decimal _price; // Retail price
|
||||
|
||||
// Constructor
|
||||
public CellPhone()
|
||||
{
|
||||
_brand = "";
|
||||
_model = "";
|
||||
_price = 0m;
|
||||
}
|
||||
|
||||
// Brand property
|
||||
public string Brand
|
||||
{
|
||||
get { return _brand; }
|
||||
set { _brand = value; }
|
||||
}
|
||||
|
||||
// Model property
|
||||
public string Model
|
||||
{
|
||||
get { return _model; }
|
||||
set { _model = value; }
|
||||
}
|
||||
|
||||
// Price property
|
||||
public decimal Price
|
||||
{
|
||||
get { return _price; }
|
||||
set { _price = value; }
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user