示例#1
0
文件: Book.cs 项目: ArtemAng/nikaLabs
        public Book(int sheets)
        {
            BookDidMount?.Invoke("Он родился");
            BookEventArgs b = new BookEventArgs();

            this.sheets = sheets;
        }
示例#2
0
文件: Car.cs 项目: ArtemAng/nikaLabs
        public Car(double price, string mark, int doors)
        {
            BookDidMount?.Invoke("Он родился");

            this.mark   = mark;
            this.price  = price;
            this.probeg = 0;
            this.speed  = 0;
            this.doors  = doors;
        }
示例#3
0
文件: Car.cs 项目: ArtemAng/nikaLabs
        public Car(double price)
        {
            BookDidMount?.Invoke("Он родился");

            this.mark   = "";
            this.price  = price;
            this.probeg = 0;
            this.speed  = 0;
            this.doors  = 0;
        }
示例#4
0
文件: Car.cs 项目: ArtemAng/nikaLabs
 public Car(double price, double speed, double probeg, string mark, int doors, int bakVolum)
 {
     BookDidMount?.Invoke("Он родился");
     this.mark     = mark;
     this.price    = price;
     this.probeg   = probeg;
     this.speed    = speed;
     this.doors    = doors;
     this.bakVolum = bakVolum;
 }
示例#5
0
 public Ferarri(double price, double speed, double probeg, string mark, int doors, int bakVolum, int idvoditelya, int VmestimostPeperoni) : base(price, speed, probeg, mark, doors, bakVolum, idvoditelya)
 {
     BookDidMount?.Invoke("Он родился");
     this.VmestimostPeperoni = VmestimostPeperoni;
 }
示例#6
0
 public Mustang(double price, double speed, double probeg, string mark, int doors, int bakVolum, int hourses, string color) : base(price, speed, probeg, mark, doors, bakVolum, hourses)
 {
     BookDidMount?.Invoke("Он родился");
     this.color = color;
 }
示例#7
0
 public MuscleCar(double price, double speed, double probeg, string mark, int doors, int bakVolum, int hourses) : base(price, speed, probeg, mark, doors, bakVolum)
 {
     BookDidMount?.Invoke("Он родился");
     this.hourses = hourses;
 }
示例#8
0
 public Lamborginy(double price, double speed, double probeg, string mark, int doors, int bakVolum, int idvoditelya, char class_)
 {
     BookDidMount?.Invoke("Он родился");
     this.class_ = class_;
 }
示例#9
0
 public SportCar(double price, double speed, double probeg, string mark, int doors, int bakVolum, int idvoditelya) : base(price, speed, probeg, mark, doors, bakVolum)
 {
     BookDidMount?.Invoke("Он родился");
     this.idvoditelya = idvoditelya;
 }
示例#10
0
 public Hummer(double price, double speed, double probeg, string mark, int doors, int bakVolum, int collichestvoKoles, string juju, int pafos) : base(price, speed, probeg, mark, doors, bakVolum, collichestvoKoles, juju)
 {
     BookDidMount?.Invoke("Он родился");
     this.pafos = pafos;
 }
示例#11
0
 public Shevrolet(double price, double speed, double probeg, string mark, int doors, int bakVolum, int hourses, bool isCool) : base(price, speed, probeg, mark, doors, bakVolum, hourses)
 {
     BookDidMount?.Invoke("Он родился");
     this.isCool = isCool;
 }
示例#12
0
 public Vnedorojnik(double price, double speed, double probeg, string mark, int doors, int bakVolum, int collichestvoKoles, string juju) : base(price, speed, probeg, mark, doors, bakVolum)
 {
     BookDidMount?.Invoke("Он родился");
     this.collichestvoKoles = collichestvoKoles;
     this.juju = juju;
 }