Skip to content

Commit

Permalink
Merge pull request #1552 from AgnaldoSilva0/Branch_19826
Browse files Browse the repository at this point in the history
Implementado interface para ServicoMDFeConsultaProtocolo
  • Loading branch information
andrebts authored Aug 30, 2024
2 parents e7aa2ce + 3f1e12e commit 3373a74
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@
using MDFe.Classes.Extensoes;
using MDFe.Classes.Retorno.MDFeConsultaProtocolo;
using MDFe.Servicos.Factory;
using MDFe.Servicos.Interfaces;
using MDFe.Utils.Configuracoes;

namespace MDFe.Servicos.ConsultaProtocoloMDFe
{
public class ServicoMDFeConsultaProtocolo
public class ServicoMDFeConsultaProtocolo : IServicoMDFeConsultaProtocolo
{
public MDFeRetConsSitMDFe MDFeConsultaProtocolo(string chave, MDFeConfiguracao cfgMdfe = null)
{
Expand Down
10 changes: 10 additions & 0 deletions MDFe.Servicos/Interfaces/IServicoMDFeConsultaProtocolo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using MDFe.Classes.Retorno.MDFeConsultaProtocolo;
using MDFe.Utils.Configuracoes;

namespace MDFe.Servicos.Interfaces
{
public interface IServicoMDFeConsultaProtocolo
{
MDFeRetConsSitMDFe MDFeConsultaProtocolo(string chave, MDFeConfiguracao cfgMdfe);
}
}

0 comments on commit 3373a74

Please sign in to comment.