public frmCadastroParametros(IDocumentoAppService docappservice)
 {
     try
     {
         _docappservice = docappservice;
         InitializeComponent();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.GetBaseException().Message);
     }
 }
예제 #2
0
 public Importacao(IDocumentoAppService docappservice)
 {
     _docappservice = docappservice;
     container      = ServicoIntegracao.Container;
 }
예제 #3
0
 public DocumentoController(IDocumentoAppService documentoAppService, IDomainNotificationHandler <DomainNotification> notifications, IUser user) : base(notifications, user)
 {
     _documentoAppService = documentoAppService;
 }
예제 #4
0
 public frmConsultaLog(IDocumentoAppService docappservice)
 {
     _docappservice = docappservice;
     InitializeComponent();
     CarregaForm();
 }
예제 #5
0
 public frmAlteraMDBs(IDocumentoAppService docappservice)
 {
     _docappservice = docappservice;
     InitializeComponent();
     CarregaForm();
 }
예제 #6
0
 public frmConsultaParametros(IDocumentoAppService docappservice)
 {
     InitializeComponent();
     _docappservice = docappservice;
 }
예제 #7
0
 public Form1(IDocumentoAppService docappservice)
 {
     container      = Program.Container;
     _docappservice = docappservice;
     InitializeComponent();
 }
예제 #8
0
 public MDIPrincipal(IDocumentoAppService docappservice)
 {
     _docappservice = docappservice;
     InitializeComponent();
     CarregaForm();
 }
 public frmConsultaCategoria(IDocumentoAppService docappservice)
 {
     InitializeComponent();
     _docappservice = docappservice;
 }
예제 #10
0
 public frmCadastroCategoria(IDocumentoAppService docappservice)
 {
     _docappservice = docappservice;
     InitializeComponent();
     MontaForm();
 }