Exemple #1
0
        public List <DataTable> AdvancePaymentEmployeeComboFill()
        {
            List <DataTable> ListObj = new List <DataTable>();

            try
            {
                ListObj = spAdvancePayment.AdvancePaymentEmployeeComboFill();
            }
            catch (Exception ex)
            {
                MessageBox.Show("AP6:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(ListObj);
        }
Exemple #2
0
        public DataTable EmployeeComboFill()
        {
            DataTable dtblspAdvancePayment = new DataTable();

            try
            {
                AdvancePaymentSP spAdvancePayment = new AdvancePaymentSP();
                dtblspAdvancePayment = spAdvancePayment.AdvancePaymentEmployeeComboFill();
            }
            catch (Exception ex)
            {
                //MessageBox.Show("AP12:" + ex.Message, "Masterfine", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(dtblspAdvancePayment);
        }