private SOType_PricingConditionType objCreateSOType_PricingConditionType(DataRow dr)
        {
            SOType_PricingConditionType tSOType_PricingConditionType = new SOType_PricingConditionType();

            tSOType_PricingConditionType.SetObjectInfo(dr);
            return(tSOType_PricingConditionType);
        }
        public ICollection <SOType_PricingConditionType> colGetSOType_PricingConditionType(DataTable dt, string argUserName, string clientCode)
        {
            List <SOType_PricingConditionType> lst = new List <SOType_PricingConditionType>();
            SOType_PricingConditionType        objSOType_PricingConditionType = null;

            foreach (DataRow dr in dt.Rows)
            {
                objSOType_PricingConditionType                   = new SOType_PricingConditionType();
                objSOType_PricingConditionType.SOTypeCode        = Convert.ToString(dr["SOTypeCode"]).Trim();
                objSOType_PricingConditionType.ConditionTypeCode = Convert.ToString(dr["ConditionTypeCode"]).Trim();
                objSOType_PricingConditionType.IsDeleted         = Convert.ToInt32(dr["IsDeleted"]);
                objSOType_PricingConditionType.ModifiedBy        = Convert.ToString(argUserName).Trim();
                objSOType_PricingConditionType.CreatedBy         = Convert.ToString(argUserName).Trim();
                objSOType_PricingConditionType.ClientCode        = Convert.ToString(clientCode).Trim();
                lst.Add(objSOType_PricingConditionType);
            }
            return(lst);
        }
        public ICollection <SOType_PricingConditionType> colGetSOType_PricingConditionType(string argSOTypeCode, string argClientCode)
        {
            List <SOType_PricingConditionType> lst = new List <SOType_PricingConditionType>();
            DataSet DataSetToFill = new DataSet();
            SOType_PricingConditionType tSOType_PricingConditionType = new SOType_PricingConditionType();

            DataSetToFill = this.GetSOType_PricingConditionType(argSOTypeCode, argClientCode);

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

Finish:
            DataSetToFill = null;

            return(lst);
        }
        public void InsertSOType_PricingConditionType(SOType_PricingConditionType argSOType_PricingConditionType, DataAccess da, List <ErrorHandler> lstErr)
        {
            SqlParameter[] param = new SqlParameter[8];
            param[0] = new SqlParameter("@SOTypeCode", argSOType_PricingConditionType.SOTypeCode);
            param[1] = new SqlParameter("@ConditionTypeCode", argSOType_PricingConditionType.ConditionTypeCode);
            param[2] = new SqlParameter("@ClientCode", argSOType_PricingConditionType.ClientCode);
            param[3] = new SqlParameter("@CreatedBy", argSOType_PricingConditionType.CreatedBy);
            param[4] = new SqlParameter("@ModifiedBy", argSOType_PricingConditionType.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_InsertSOType_PricingConditionType", 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     = "";
            objErrorHandler.ReturnValue = strRetValue;
            lstErr.Add(objErrorHandler);
        }
        public SOType_PricingConditionType objGetSOType_PricingConditionType(string argSOTypeCode, string argConditionTypeCode, string argClientCode)
        {
            SOType_PricingConditionType argSOType_PricingConditionType = new SOType_PricingConditionType();
            DataSet DataSetToFill = new DataSet();

            if (argSOTypeCode.Trim() == "")
            {
                goto ErrorHandlers;
            }

            if (argConditionTypeCode.Trim() == "")
            {
                goto ErrorHandlers;
            }

            if (argClientCode.Trim() == "")
            {
                goto ErrorHandlers;
            }
            DataSetToFill = this.GetSOType_PricingConditionType(argSOTypeCode, argConditionTypeCode, argClientCode);

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

            goto Finish;

ErrorHandlers:

Finish:
            DataSetToFill = null;

            return(argSOType_PricingConditionType);
        }
        public ICollection <ErrorHandler> SaveSOType_PricingConditionType(SOType_PricingConditionType argSOType_PricingConditionType)
        {
            List <ErrorHandler> lstErr = new List <ErrorHandler>();
            DataAccess          da     = new DataAccess();

            try
            {
                if (blnIsSOType_PricingConditionTypeExists(argSOType_PricingConditionType.SOTypeCode, argSOType_PricingConditionType.ConditionTypeCode, argSOType_PricingConditionType.ClientCode) == false)
                {
                    da.Open_Connection();
                    da.BEGIN_TRANSACTION();
                    InsertSOType_PricingConditionType(argSOType_PricingConditionType, da, lstErr);
                    foreach (ErrorHandler objerr in lstErr)
                    {
                        if (objerr.Type == "E")
                        {
                            da.ROLLBACK_TRANSACTION();
                            return(lstErr);
                        }
                    }
                }
                else
                {
                    da.Open_Connection();
                    da.BEGIN_TRANSACTION();
                    UpdateSOType_PricingConditionType(argSOType_PricingConditionType, da, lstErr);
                    foreach (ErrorHandler objerr in lstErr)
                    {
                        if (objerr.Type == "E")
                        {
                            da.ROLLBACK_TRANSACTION();
                            return(lstErr);
                        }
                    }
                }
            }
            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);
        }