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

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

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

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

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

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

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

            return(dac.GetMatNInfo());
        }