-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #403 from robertorp/master
Adicionado Eventos Antes do envio do CT-e e MDF-e
- Loading branch information
Showing
9 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
using CTe.Classes.Servicos.Recepcao; | ||
|
||
namespace CTe.Servicos.Recepcao | ||
{ | ||
public class AntesEnviarRecepcao : EventArgs | ||
{ | ||
private readonly enviCTe _enviCTe; | ||
|
||
public AntesEnviarRecepcao(enviCTe enviCTe) | ||
{ | ||
_enviCTe = enviCTe; | ||
} | ||
|
||
public enviCTe enviCTe | ||
{ | ||
get { return _enviCTe; } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System; | ||
using MDFe.Classes.Servicos.Autorizacao; | ||
|
||
namespace MDFe.Servicos.RecepcaoMDFe | ||
{ | ||
public class AntesDeEnviar : EventArgs | ||
{ | ||
private MDFeEnviMDFe _enviMdFe; | ||
|
||
public AntesDeEnviar(MDFeEnviMDFe enviMdfe) | ||
{ | ||
_enviMdFe = enviMdfe; | ||
} | ||
|
||
public MDFeEnviMDFe enviMdFe | ||
{ | ||
get { return _enviMdFe; } | ||
set { _enviMdFe = value; } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters