LP21-Programmation-objet/TD4/Collaborateur.cs

22 lines
504 B
C#
Raw Normal View History

2022-10-06 10:41:21 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Programmation_objet_TLESIO21.TD4 {
public class Collaborateur {
private readonly String NOM;
private String DateNaissance;
public Collaborateur(String nom, String birthdate) {
this.NOM = nom;
this.DateNaissance = birthdate;
}
public virtual double getSalaire() {
return .0;
}
}
}