Exemple #1
0
        //THis function get a price of MetaItemID that correspondance with the quantity
        //----------------------------------------------------------------------------------
        public double GetPrice(string MetaItemID, int QTY)
        {
            double           Price = 0;
            Predict_DAO_MCol a     = new Predict_DAO_MCol();

            try
            {
                Price = a.GetPrice(MetaItemID, QTY);
            }
            catch (Exception)
            {
                throw;
            }

            return(Price);
        }