public ChartOfAccount objGetChartOfAccount(string argChartACCode, string argClientCode)
        {
            ChartOfAccount argChartOfAccount = new ChartOfAccount();
            DataSet        DataSetToFill     = new DataSet();

            if (argChartACCode.Trim() == "")
            {
                goto ErrorHandler;
            }

            if (argClientCode.Trim() == "")
            {
                goto ErrorHandler;
            }


            DataSetToFill = this.GetChartOfAccount(argChartACCode, argClientCode);

            if (DataSetToFill.Tables[0].Rows.Count <= 0)
            {
                goto Finish;
            }

            argChartOfAccount = this.objCreateChartOfAccount((DataRow)DataSetToFill.Tables[0].Rows[0]);

            goto Finish;

ErrorHandler:

Finish:
            DataSetToFill = null;


            return(argChartOfAccount);
        }
        private ChartOfAccount objCreateChartOfAccount(DataRow dr)
        {
            ChartOfAccount tChartOfAccount = new ChartOfAccount();

            tChartOfAccount.SetObjectInfo(dr);

            return(tChartOfAccount);
        }
        public void UpdateChartOfAccount(ChartOfAccount argChartOfAccount, DataAccess da, List <ErrorHandler> lstErr)
        {
            SqlParameter[] param = new SqlParameter[8];
            param[0] = new SqlParameter("@ChartACCode", argChartOfAccount.ChartACCode);
            param[1] = new SqlParameter("@ChartAcName", argChartOfAccount.ChartAcName);
            param[2] = new SqlParameter("@ClientCode", argChartOfAccount.ClientCode);
            param[3] = new SqlParameter("@CreatedBy", argChartOfAccount.CreatedBy);
            param[4] = new SqlParameter("@ModifiedBy", argChartOfAccount.ModifiedBy);

            param[5]           = new SqlParameter("@Type", SqlDbType.Char);
            param[5].Size      = 1;
            param[5].Direction = ParameterDirection.Output;

            param[6]           = new SqlParameter("@Message", SqlDbType.VarChar);
            param[6].Size      = 255;
            param[6].Direction = ParameterDirection.Output;

            param[7]           = new SqlParameter("@returnvalue", SqlDbType.VarChar);
            param[7].Size      = 20;
            param[7].Direction = ParameterDirection.Output;

            int i = da.NExecuteNonQuery("Proc_UpdateChartOfAccount", param);


            string strMessage  = Convert.ToString(param[6].Value);
            string strType     = Convert.ToString(param[5].Value);
            string strRetValue = Convert.ToString(param[7].Value);


            objErrorHandler.Type       = strType;
            objErrorHandler.MsgId      = 0;
            objErrorHandler.Module     = ErrorConstant.strInsertModule;
            objErrorHandler.ModulePart = ErrorConstant.strMasterModule;
            objErrorHandler.Message    = strMessage.ToString();
            objErrorHandler.RowNo      = 0;
            objErrorHandler.FieldName  = "";
            objErrorHandler.LogCode    = "";
            lstErr.Add(objErrorHandler);
        }
        public ICollection <ChartOfAccount> colGetChartOfAccount(string argClientCode)
        {
            List <ChartOfAccount> lst      = new List <ChartOfAccount>();
            DataSet        DataSetToFill   = new DataSet();
            ChartOfAccount tChartOfAccount = new ChartOfAccount();

            DataSetToFill = this.GetChartOfAccount(argClientCode);

            if (DataSetToFill != null)
            {
                foreach (DataRow dr in DataSetToFill.Tables[0].Rows)
                {
                    lst.Add(objCreateChartOfAccount(dr));
                }
            }
            goto Finish;

Finish:
            DataSetToFill = null;


            return(lst);
        }
        public ICollection <ErrorHandler> SaveChartOfAccount(ChartOfAccount argChartOfAccount)
        {
            List <ErrorHandler> lstErr = new List <ErrorHandler>();
            DataAccess          da     = new DataAccess();

            try
            {
                if (blnIsChartOfAccountExists(argChartOfAccount.ChartACCode, argChartOfAccount.ClientCode) == false)
                {
                    da.Open_Connection();
                    da.BEGIN_TRANSACTION();
                    InsertChartOfAccount(argChartOfAccount, da, lstErr);
                    foreach (ErrorHandler objerr in lstErr)
                    {
                        if (objerr.Type == "E")
                        {
                            da.ROLLBACK_TRANSACTION();
                            return(lstErr);
                        }
                    }

                    da.COMMIT_TRANSACTION();
                }
                else
                {
                    da.Open_Connection();
                    da.BEGIN_TRANSACTION();
                    UpdateChartOfAccount(argChartOfAccount, da, lstErr);
                    foreach (ErrorHandler objerr in lstErr)
                    {
                        if (objerr.Type == "E")
                        {
                            da.ROLLBACK_TRANSACTION();
                            return(lstErr);
                        }
                    }

                    da.COMMIT_TRANSACTION();
                }
            }
            catch (Exception ex)
            {
                if (da != null)
                {
                    da.ROLLBACK_TRANSACTION();
                }
                objErrorHandler.Type       = ErrorConstant.strAboartType;
                objErrorHandler.MsgId      = 0;
                objErrorHandler.Module     = ErrorConstant.strInsertModule;
                objErrorHandler.ModulePart = ErrorConstant.strMasterModule;
                objErrorHandler.Message    = ex.Message.ToString();
                objErrorHandler.RowNo      = 0;
                objErrorHandler.FieldName  = "";
                objErrorHandler.LogCode    = "";
                lstErr.Add(objErrorHandler);
            }
            finally
            {
                if (da != null)
                {
                    da.Close_Connection();
                    da = null;
                }
            }
            return(lstErr);
        }