Exemple #1
0
        public bool AddPriceInfo(PriceInfoVO vo)
        {
            PriceDac dac = new PriceDac();

            return(dac.AddPriceInfo(vo));
        }
Exemple #2
0
        public bool UpdatePriceInfo(PriceInfoVO vo)
        {
            PriceDac dac = new PriceDac();

            return(dac.UpdatePriceInfo(vo));
        }
Exemple #3
0
        public List <PriceInfoVO> GetPriceInfo(string company_type)
        {
            PriceDac dac = new PriceDac();

            return(dac.GetPriceInfo(company_type));
        }