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.
Digitalisation_EPA_Serveur/Services/NoteService.cs

65 lines
1.3 KiB

using EPAServeur.IServices;
using EPAServeur.Models.Notes;
using IO.Swagger.DTO;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EPAServeur.Services
{
public class NoteService : INoteService
{
public bool AjouterNote(DetailsNoteDTO nouvelleNote)
{
throw new NotImplementedException();
}
public List<AffichageNoteDTO> GetNotByCollaborateur(Guid? idAuteur, Guid? idCollaborateur)
{
throw new NotImplementedException();
}
public DetailsNoteDTO GetNoteById(int? idNote)
{
throw new NotImplementedException();
}
public List<AffichageNoteDTO> GetNotes()
{
throw new NotImplementedException();
}
public List<AffichageNoteDTO> GetNotesByAuteur(Guid? idAuteur)
{
throw new NotImplementedException();
}
public bool SupprimerNote(int? idNote)
{
throw new NotImplementedException();
}
public void UpdateNote(int? idNote, DetailsNoteDTO note)
{
throw new NotImplementedException();
}
//Object to DTO
public AffichageNoteDTO NoteToAffichageDTO(Note note)
{
return null;
}
public DetailsNoteDTO NoteToDetailSDTO(Note note)
{
return null;
}
//DTO to Object
public Note DetailsNoteDTOToNote(DetailsNoteDTO detailsNoteDTO)
{
return null;
}
}
}