public LiquidacionesPrincipalConceptos(GestionLiquidacionConceptos Liquidar_scrn, Empresa empresa)
        {
            InitializeComponent();

            this.Liquidar_scrn = Liquidar_scrn;
            this._empresa      = empresa;
        }
Пример #2
0
 public PrincipalConceptos(Principal Index, GestionLiquidacionConceptos Liquidar_scrn, Empresa empresa, bool isModoEditar)
 {
     InitializeComponent();
     this.Index          = Index;
     this.IsModoEditar   = isModoEditar;
     this.ScreenLiquidar = Liquidar_scrn;
     this._empresa       = empresa;
 }
Пример #3
0
        private void btnLiquidar_Click(object sender, EventArgs e)
        {
            this.Enabled = false;
            GestionLiquidacionConceptos screenLiquidar = new GestionLiquidacionConceptos(this, _empresa, _legajo, false);


            screenLiquidar.Show();
        }
Пример #4
0
        public CalculadoraSAC(XmlDocument Docs, GestionLiquidacionConceptos screenLiquidar, bool isSalarioMensual)
        {
            InitializeComponent();

            this.Docs             = Docs;
            this.isSalarioMensual = isSalarioMensual;
            this.screenLiquidar   = screenLiquidar;
        }
Пример #5
0
        private void btnEditar_Click(object sender, EventArgs e)
        {
            this.Enabled = false;
            GestionLiquidacionConceptos screenLiquidar = new GestionLiquidacionConceptos(this, _empresa, _legajo, true);

            //screenLiquidar.MdiParent = this.Index.ParentForm;

            screenLiquidar.Show();
        }