public WMAPermit(aLicenseComponent license) : base(license)
 {
     this._name  = "WMP Permit";
     this._price = 26.00;
 }
 public DeerPermit(aLicenseComponent license) : base(license)
 {
     this._name  = "Deer Permit";
     this._price = 5.00;
 }
 public MuzzleLoadingPermit(aLicenseComponent license) : base(license)
 {
     this._name  = "MuzzleLoading Permit";
     this._price = 5.00;
 }
 public SnookPermit(aLicenseComponent license) : base(license)
 {
     this._name  = "Snook Permit";
     this._price = 10.00;
 }
 public TurkeyPermit(aLicenseComponent license) : base(license)
 {
     this._name  = "Turkey Permit";
     this._price = 5.00;
 }
 public SpinyLobsterPermit(aLicenseComponent license) : base(license)
 {
     this._name  = "Spiny Lobster Permit";
     this._price = 5.00;
 }
 protected LicenseDecorator(aLicenseComponent license)
 {
     _license = license;
 }
Exemple #8
0
 public ArcheryPermit(aLicenseComponent license) : base(license)
 {
     this._name  = "Archery Permit";
     this._price = 5.00;
 }
 public TarponPermit(aLicenseComponent license) : base(license)
 {
     this._name  = "Tarpon Permit";
     this._price = 51.50;
 }
 public CrossbowPermit(aLicenseComponent license) : base(license)
 {
     this._name  = "Crossbow Permit";
     this._price = 5.00;
 }