using projet.dal;
using projet.modele;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace projet.Controller
{
internal class AdminController
{
private readonly PersonnelAccess personnelAccess;
///
/// Récupère l'accès aux données des responsables.
///
public AdminController()
{
personnelAccess = new PersonnelAccess();
}
public List GetAllPersonnel()
{
return personnelAccess.GetAllPersonnel();
}
}
}