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.
20 lines
526 B
20 lines
526 B
using System.Collections.Generic;
|
|
using EPAServeur.BDAccess;
|
|
using EPAServeur.CollaborateurModele.Collaborateur;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using MySql.Data.MySqlClient;
|
|
|
|
namespace EPAServeur.Controllers.CollaborateurController
|
|
{
|
|
[Route("api/")]
|
|
[ApiController]
|
|
public class CollaborateurControlleur : ControllerBase
|
|
{
|
|
[HttpGet("collaborateurs")]
|
|
public IEnumerable<Collaborateur> Get()
|
|
{
|
|
List<Collaborateur> liste = APIAccess.requestAPI<Collaborateur>("/personne");
|
|
return liste;
|
|
}
|
|
}
|
|
}
|
|
|