public static ICollection <VendaAtivosEstoqueDTO> VendaAtivosProduto(int idProduto) { Config.AutoMapperConfig.Inicializar(); var estoqueRep = new EstoqueRepository(); ICollection <Venda_Ativos> vendaAtivos = estoqueRep.PegarVendaAtivosDoProduto(idProduto); var vendaAtivosDTO = Mapper.Map <ICollection <Venda_Ativos>, ICollection <VendaAtivosEstoqueDTO> >(vendaAtivos); return(vendaAtivosDTO); }
public static ICollection<VendaAtivosEstoqueDTO> VendaAtivosProduto(int idProduto) { Config.AutoMapperConfig.Inicializar(); var estoqueRep = new EstoqueRepository(); ICollection<Venda_Ativos> vendaAtivos = estoqueRep.PegarVendaAtivosDoProduto(idProduto); var vendaAtivosDTO = Mapper.Map<ICollection<Venda_Ativos>, ICollection<VendaAtivosEstoqueDTO>>(vendaAtivos); return vendaAtivosDTO; }