示例#1
0
        public bool Delete(int priceID)
        {
            MatPriceDAC dac = new MatPriceDAC();

            return(dac.Delete(priceID));
        }
示例#2
0
        public List <MatPriceVO> GetWhereInfo(string prodName, string companyName)
        {
            MatPriceDAC dac = new MatPriceDAC();

            return(dac.GetWhereInfo(prodName, companyName));
        }
示例#3
0
        public List <Mat_CompanyCBOBindingVO> GetCompanyNameName()
        {
            MatPriceDAC dac = new MatPriceDAC();

            return(dac.GetCompanyNameName());
        }
示例#4
0
        public List <Mat_ProdCBOBindingVO> GetProdName()
        {
            MatPriceDAC dac = new MatPriceDAC();

            return(dac.GetProdName());
        }
示例#5
0
        public bool Update(MatPriceVO vo)
        {
            MatPriceDAC dac = new MatPriceDAC();

            return(dac.Update(vo));
        }
示例#6
0
        public bool Insert(MatPriceVO vo)
        {
            MatPriceDAC dac = new MatPriceDAC();

            return(dac.Insert(vo));
        }
示例#7
0
        public List <MatPriceVO> GetMatNInfo()
        {
            MatPriceDAC dac = new MatPriceDAC();

            return(dac.GetMatNInfo());
        }