Ejemplo n.º 1
0
 public OnePound(int year, UKMintage mint) : base(year, mint)
 {
     Name          = "One Pound Coin";
     MonetaryValue = 1.00;
 }
Ejemplo n.º 2
0
 public TwentyPence(int year, UKMintage mint) : base(year, mint)
 {
     Name          = "Twenty Pence Coin";
     MonetaryValue = 0.20;
 }
Ejemplo n.º 3
0
 public TwoPound(int year, UKMintage mint) : base(year, mint)
 {
     Name          = "Two Pound Coin";
     MonetaryValue = 2.00;
 }
 public FivePound(int year, UKMintage mint) : base(year, mint)
 {
     Name          = "Five Pound Coin";
     MonetaryValue = 5.00;
 }
Ejemplo n.º 5
0
 public FiftyPence(int year, UKMintage mint) : base(year, mint)
 {
     Name          = "Fifty Pence Coin";
     MonetaryValue = 0.50;
 }
Ejemplo n.º 6
0
 public UKCoin(int year, UKMintage mint)
 {
     this.Year = year;
     this.Mint = mint;
 }
Ejemplo n.º 7
0
 public OnePenny(int year, UKMintage mint) : base(year, mint)
 {
     Name          = "One Penny Coin";
     MonetaryValue = 0.01;
 }
 public TenPence(int year, UKMintage mint) : base(year, mint)
 {
     Name          = "Ten Pence Coin";
     MonetaryValue = 0.10;
 }