|
|
|
@ -0,0 +1,65 @@ |
|
|
|
|
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; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |