Exemplo n.º 1
0
 public UnsafeAssets(TypeUnsafe typeUnsafe, string name, int count, string unitMeasurement, string currency, int productionDate, int initialBalanceValue,
                     int remainsBalanceValue, int marketValue)
     : base(currency)
 {
     this.typeUnsafe     = typeUnsafe;
     Name                = name;
     Count               = count;
     UnitMeasurement     = unitMeasurement;
     ProductionDate      = productionDate;
     InitialBalanceValue = initialBalanceValue;
     RemainsBalanceValue = remainsBalanceValue;
     MarketValue         = marketValue;
 }
Exemplo n.º 2
0
 public UnsafeAssets(TypeUnsafe typeUnsafe, string name, string currency, int productionDate, int initialBalanceValue,
                     int remainsBalanceValue, int estimatedeValue, string address, int inventoryNumber)
     : base(currency)
 {
     this.typeUnsafe     = typeUnsafe;
     Name                = name;
     Address             = address;
     ProductionDate      = productionDate;
     InitialBalanceValue = initialBalanceValue;
     RemainsBalanceValue = remainsBalanceValue;
     EstimatedeValue     = estimatedeValue;
     InventoryNumber     = inventoryNumber;
 }