-
Notifications
You must be signed in to change notification settings - Fork 0
/
Profesor.cs
47 lines (32 loc) · 1.02 KB
/
Profesor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ColegioAC
{
public class Profesor : Persona
{
private string titulacion;
private double salario;
public Profesor() : base(){
this.titulacion = "";
this.salario = 0.0;
}
public Profesor(string nombre, int edad, string apellidos, Dni dni, string titulacion, double salario) : base(nombre, edad, apellidos, dni)
{
this.titulacion = titulacion;
this.salario = salario;
}
public string Titulacion { get => titulacion; set => titulacion = value; }
public double Salario { get => salario; set => salario = value; }
public override void SumarEdad() // Override porque es redefinido
{
this.Edad = this.Edad + 5;
}
public override string ToString()
{
return base.ToString()+" "+this.titulacion+" "+this.salario;
}
}
}