public IEnumerable <ServicoPagamento> GetServicoPagamentoByAll() { var servicosPagamento = _sGMContext.ServicoPagamento.AsNoTracking().ToList(); if (servicosPagamento != null) { foreach (var servicoPagamento in servicosPagamento) { servicoPagamento.ServicoPagamentoParcela = GetServicoPagamentoParcelaByServicoPagamentoId(servicoPagamento.ServicoPagamentoId); servicoPagamento.FormaPagamento = _formaPagamentoRepository.GetFormaPagamentoById(servicoPagamento.FormaPagamentoId); } } return(servicosPagamento); }
public FormaPagamentoViewModel GetFormaPagamentoById(int formaPagamentoId) { return(_mapper.Map <FormaPagamentoViewModel>(_formaPagamentoRepository.GetFormaPagamentoById(formaPagamentoId))); }