using EPAServeur.Context; using IO.Swagger.DTO; using IO.Swagger.ModelCollaborateur; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.IServices { public interface IFormationService { FormationDTO GetFormationById(int? id); IEnumerable GetFormations(); IEnumerable GetFormationAnnulees(); IEnumerable GetFormationRealisee(); IEnumerable GetProchainesFormation(); IEnumerable GetModesFormation(); IEnumerable GetOriginesFormation(); IEnumerable GetStatutsFormation(); IEnumerable GetTypesFormation(); byte AddFormation(FormationDTO formationDTO); byte UpdateFormation(FormationDTO formationDTO); byte DeleteFormationById(int? id); } }