Esempio n. 1
0
        public string UpdateAssetDetail(string assetDetailId, string payout, string price)
        {
            string strResult = string.Empty;

            try
            {
                ForexBO objForexBO = new ForexBO();
                objForexBO.AssetDetailId = Convert.ToInt32(assetDetailId);
                objForexBO.Payout        = Convert.ToInt32(payout);
                objForexBO.Price         = Convert.ToDouble(price);
                //double upper_Limit = 0.0;
                //if (upperLimit != "")
                //    objForexBO.UpperLimit = float.Parse(upperLimit);
                //else
                //    objForexBO.UpperLimit = (float)upper_Limit;

                // 1 for success
                strResult = new ForexBL().UpdateAssetDetail(objForexBO);
            }
            catch (Exception ex)
            {
                strResult = "5"; // Exception
            }
            return(strResult);
        }
Esempio n. 2
0
        /// <summary>
        /// Created By : Satish Verma
        /// Created Date : 2-Dec-2014
        /// Purpose : To Update Asset Detail
        /// </summary>
        /// <param name="objForexBO"></param>
        /// <returns></returns>
        public string UpdateAssetDetail(ForexBO objForexBO)
        {
            string    strResult    = string.Empty;
            DataTable objDataTable = new DataTable();

            try
            {
                sqlConnection.Open();
                sqlCommand             = new SqlCommand();
                sqlCommand.Connection  = sqlConnection;
                sqlCommand.CommandText = "Sp_UpdateAssetDetails";
                sqlCommand.CommandType = CommandType.StoredProcedure;
                sqlCommand.Parameters.AddWithValue("@AssetDetailId", objForexBO.AssetDetailId);
                sqlCommand.Parameters.AddWithValue("@Payout", objForexBO.Payout);
                sqlCommand.Parameters.AddWithValue("@Price", objForexBO.Price);
                sqlDataAdapter = new SqlDataAdapter(sqlCommand);
                sqlDataAdapter.Fill(objDataTable);
                foreach (DataRow Row in objDataTable.Rows)
                {
                    strResult = (Convert.ToString(Row["Result"]));
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                sqlDataAdapter.Dispose();
                sqlCommand.Dispose();
                sqlConnection.Close();
                sqlConnection.Dispose();
            }
            return(strResult);
        }
Esempio n. 3
0
        /// <summary>
        /// Created By : Satish Verma
        /// Created Date : 1-Dec-2014
        /// Purpose : To Get Asset Data
        /// </summary>
        /// <param name="tradingTypeId"></param>
        /// <returns></returns>
        public List <ForexBO> GetGridDataByTradingType(int assetTypeId, int tradingTypeId, int pageNumber, int pageSize, string sort, string searchText)
        {
            DataTable      objDataTable = new ForexDA().GetGridDataByTradingType(assetTypeId, tradingTypeId, pageNumber, pageSize, sort, searchText);
            List <ForexBO> lstForexBO   = new List <ForexBO>();

            foreach (DataRow Row in objDataTable.Rows)
            {
                ForexBO obForexBO = new ForexBO();
                obForexBO.Total         = Convert.ToInt32(Row["Total"]);
                obForexBO.AssetId       = (Guid)Row["AssetId"];
                obForexBO.AssetDetailId = Convert.ToInt32(Row["AssetDetailId"]); // Used to Update asset details
                obForexBO.Asset         = Convert.ToString(Row["Asset"]);
                obForexBO.Price         = Convert.ToDouble(Row["Price"]);
                obForexBO.TelnetValue1  = Convert.ToString(Row["TelnetValue1"]);
                obForexBO.TelnetValue2  = Convert.ToString(Row["TelnetValue2"]);
                obForexBO.AssetStatus   = Convert.ToBoolean(Row["AssetStatus"]);

                if (string.IsNullOrEmpty(Convert.ToString(Row["UpperLimit"])))
                {
                    obForexBO.UpperLimit = null;
                }
                else
                {
                    obForexBO.UpperLimit = Convert.ToDouble(Row["UpperLimit"]);
                }

                if (string.IsNullOrEmpty(Convert.ToString(Row["LowerLimit"])))
                {
                    obForexBO.LowerLimit = null;
                }
                else
                {
                    obForexBO.LowerLimit = Convert.ToDouble(Row["LowerLimit"]);
                }

                if (string.IsNullOrEmpty(Convert.ToString(Row["Payout"])))
                {
                    obForexBO.Payout = 0;
                }
                else
                {
                    obForexBO.Payout = Convert.ToInt32(Row["Payout"]);
                }

                if (string.IsNullOrEmpty(Convert.ToString(Row["ExpireTime"])))
                {
                    obForexBO.ExpireTime = "null";
                }
                else
                {
                    obForexBO.ExpireTime = Convert.ToString(Row["ExpireTime"]);
                }

                if (string.IsNullOrEmpty(Convert.ToString(Row["Kvalue"])))
                {
                    obForexBO.Kvalue = null;
                }
                else
                {
                    obForexBO.Kvalue = Convert.ToDouble(Row["Kvalue"]);
                }

                //obForexBO.UpperLimit = Convert.ToDouble(Row["UpperLimit"]);
                //obForexBO.LowerLimit = Convert.ToDouble(Row["LowerLimit"]);
                //obForexBO.Payout = Convert.ToInt32(Row["Payout"]);
                //obForexBO.ExpireTime = Convert.ToString(Row["ExpireTime"]);
                //obForexBO.Kvalue = Convert.ToDouble(Row["Kvalue"]);
                obForexBO.TradingTypeId = Convert.ToInt32(Row["TradingTypeId"]);
                obForexBO.TradingType   = Convert.ToString(Row["TradingType"]);
                lstForexBO.Add(obForexBO);
            }
            return(lstForexBO);
        }
Esempio n. 4
0
 /// <summary>
 /// Created By : Satish Verma
 /// Created Date : 2-Dec-2014
 /// Purpose : To Update Asset Detail
 /// </summary>
 /// <param name="objForexBO"></param>
 /// <returns></returns>
 public string UpdateAssetDetail(ForexBO objForexBO)
 {
     return(new ForexDA().UpdateAssetDetail(objForexBO));
 }