Advertisement
1_9tdiMamkaMu

Car

Apr 21st, 2021
858
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace Vehicles.Models
  6. {
  7.     public class Car : Vehicle
  8.     {      
  9.         public Car(double fuelQuantity, double fuelConsum, double tankCapacity) : base(fuelQuantity, fuelConsum+0.9, tankCapacity)
  10.         {
  11.         }        
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement