Ejemplo n.º 1
0
        public async Task <LancamentosViewModel> GetById(int?id)
        {
            Lancamentos lancamentos = await _lancamentosRepository.GetById(id);

            return(_mapper.Map <LancamentosViewModel>(lancamentos));
        }