Task <IEnumerable <Attachment> > IRequestHandler <GetAttachmentsByFicheSuiviIdQuery, IEnumerable <Attachment> > .Handle(GetAttachmentsByFicheSuiviIdQuery request, CancellationToken cancellationToken)
        {
            var attachements = AttachementRepository.getAttachmentsByFicheSuiviId(request.FichSuiviId);

            return(Task.FromResult(attachements));
        }