コード例 #1
0
ファイル: Rodape.cs プロジェクト: mjacezar/ACBrFramework
		internal Rodape(ACBrECF acbrECF)
			: base(acbrECF)
		{
			this.NotaLegalDF = new RodapeNotaLegalDF(this);
			this.Restaurante = new Restaurante(this);
			this.Imposto = new Imposto(this);
            this.PostoCombustivel = new RodapeAbastecimentos(this);
		}
コード例 #2
0
		public DadosReducaoZClass(ACBrECF parent)
			: base(parent)
		{
			CarregaComprovantesNaoFiscais();
			CarregaICMS();
			CarregaRelatoriosGerenciais();
			CarregaISSQN();
			CarregaMeiosDePagamento();
		}
コード例 #3
0
ファイル: ACBrRFD.cs プロジェクト: mjacezar/ACBrFramework
		protected override void OnDisposing()
		{
			if (Handle != IntPtr.Zero)
			{
				if (ecf != null)
				{
					if (this.Ativo)
						Desativar();

					if(ecf.Ativo)
						ecf.Desativar();

					var oecf = ecf;
					ecf = null;
					if (oecf.RFD != null)
						oecf.RFD = null;
				}

				CallDestroy(ACBrRFDInterop.RFD_Destroy);
			}
		}
コード例 #4
0
		public void SetMemoBobinaPropertyName(ACBrECF ecf, string propertyName)
		{
			ECFInfo info;

			if (!this.infos.TryGetValue(ecf.Handle, out info))
			{
				info = new ECFInfo();
				info.ECF = ecf;
				infos.Add(ecf.Handle, info);
			}

			info.PropertyName = propertyName;
		}
コード例 #5
0
		public string GetMemoBobinaPropertyName(ACBrECF ecf)
		{
			ECFInfo info;

			if (this.infos.TryGetValue(ecf.Handle, out info))
			{
				return info.PropertyName;
			}
			else
			{
				return null;
			}
		}
コード例 #6
0
		public void SetMemoBobinaControl(ACBrECF ecf, IBindableComponent control)
		{
			ECFInfo info;

			if (!this.infos.TryGetValue(ecf.Handle, out info))
			{
				info = new ECFInfo();
				info.ECF = ecf;
				infos.Add(ecf.Handle, info);
			}

			info.Control = control;
		}
コード例 #7
0
		public IBindableComponent GetMemoBobinaControl(ACBrECF ecf)
		{
			ECFInfo info;

			if (this.infos.TryGetValue(ecf.Handle, out info))
			{
				return info.Control;
			}
			else
			{
				return null;
			}
		}
コード例 #8
0
		internal ConfigBarras(ACBrECF acbrECF)
			: base(acbrECF)
		{
		}
コード例 #9
0
 internal RodapeAbastecimento(ACBrECF parent, IntPtr composedHandle)
     : base(parent, composedHandle)
 {
 }
コード例 #10
0
ファイル: Consumidor.cs プロジェクト: mjacezar/ACBrFramework
		internal Consumidor(ACBrECF acbrECF)
			: base(acbrECF)
		{
		}