} //Remove public IEnumerable <PedidoViewModel> GetAll() { var pedidosDomain = _servicePedido.GetAll(); return(_mapper.Map <IEnumerable <PedidoViewModel> >(pedidosDomain)); } //GetAll
public async Task <ActionResult <IList <Pedido> > > GetPedido() { return(Ok(await _servicePedido.GetAll())); }