예제 #1
0
        public DataSet ContraVoucherPrinting(decimal decContraMasterId, decimal decCompanyId)
        {
            DataSet ds = new DataSet();

            try
            {
                ds = SpContraMaster.ContraVoucherPrinting(decContraMasterId, decCompanyId);
            }
            catch (Exception)
            {
                throw;
            }
            return(ds);
        }
예제 #2
0
        public DataSet ContraVoucherPrinting(decimal decContraMasterId, decimal decCompanyId)
        {
            DataSet dSt = new DataSet();

            try
            {
                ContraMasterSP spContraMaster = new ContraMasterSP();
                dSt = spContraMaster.ContraVoucherPrinting(decContraMasterId, decCompanyId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("CVBLL:12" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(dSt);
        }