public Empleado(int legajo, string nombre, string apellido, DateTime fechaIngreso, double bruto) { this._legajo = legajo; this._nombre = nombre; this._apellido = apellido; this._fechaIngreso = fechaIngreso; this._ultimoSalario = new Salario(bruto); this._salarios = new List <Salario>(); AgregarSalario(this._ultimoSalario); }
public void AgregarSalario(Salario salario) { throw new NotImplementedException(); }
//MÉTODOS public void AgregarSalario(Salario salario) { this._salarios.Add(salario); this._ultimoSalario = salario; }