Beispiel #1
0
        public async Task <MovimentoResponse> ObterPorIdFundoCpf(Guid idFundo, string cpf)
        {
            var entity = await movimentoRepository.ObterPorIdFundoCpf(idFundo, cpf);

            return(mapper.Map <MovimentoResponse>(entity));
        }