You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Org.BouncyCastle.Crypto.Digests;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace EPAServeur.CollaborateurModele.Collaborateur
|
|
|
|
|
{
|
|
|
|
|
public class Collaborateur
|
|
|
|
|
{
|
|
|
|
|
public int id { get; set; }
|
|
|
|
|
public string nom { get; set; }
|
|
|
|
|
public string prenom { get; set; }
|
|
|
|
|
public string mail { get; set; }
|
|
|
|
|
|
|
|
|
|
public Collaborateur()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Collaborateur(int id, string nom, string prenom, string mail)
|
|
|
|
|
{
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.nom = nom;
|
|
|
|
|
this.prenom = prenom;
|
|
|
|
|
this.mail = mail;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|