Example #1
0
        public EstoqueViewModel()
        {
            try
            {
                contentPresenterTabDados = new ContentPresenter();
                listaNFe = new ObservableCollection <NFeCabecalhoDTO>();

                using (ServicoEstoqueClient serv = new ServicoEstoqueClient())
                {
                    empresa = serv.selectEmpresaId(1);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }