public async Task <ReconNoteDto> GetById(long id)
        {
            var reconNote = await _iReconNoteRepository.GetById(id);

            return(ReconNoteMapper.MapReconNoteToDto(reconNote));
        }