Example #1
0
        private void EnviarComando(MFeIntegradorEnvio envio)
        {
            envio.Save(Path.Combine(Config.MFePathEnvio, "Enviados", $"{envio.Componente.Metodo.Nome}_{envio.Identificador.Valor}.xml"));

            string file = Path.Combine(Config.MFePathEnvio, $"{envio.Componente.Metodo.Nome}_{envio.Identificador.Valor}.tmp");

            envio.Save(file);

            File.Move(file, $"{file.Substring(0, file.Length - 4)}.xml");
        }
Example #2
0
        private MFeIntegradorEnvio NovoEnvio(string metodo, string identificacao)
        {
            var envio = new MFeIntegradorEnvio
            {
                Identificador = { Valor = identificacao },
                Componente    =
                {
                    Nome   = "MF-e",
                    Metodo = { Nome = metodo }
                }
            };

            return(envio);
        }