22 lines
504 B
C#
22 lines
504 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|