Ejemplo n.º 1
0
        public bool Update(SalesPriceVO vo)
        {
            SalesPriceDAC dac = new SalesPriceDAC();

            return(dac.Update(vo));
        }
Ejemplo n.º 2
0
        public bool Delete(int priceID)
        {
            SalesPriceDAC dac = new SalesPriceDAC();

            return(dac.Delete(priceID));
        }
Ejemplo n.º 3
0
        public bool Insert(SalesPriceVO vo)
        {
            SalesPriceDAC dac = new SalesPriceDAC();

            return(dac.Insert(vo));
        }
Ejemplo n.º 4
0
        public List <CompanyCBOBindingVO> GetCompanyName()
        {
            SalesPriceDAC dac = new SalesPriceDAC();

            return(dac.GetCompanyName());
        }
Ejemplo n.º 5
0
        public List <ProdCBOBindingVO> GetProdName()
        {
            SalesPriceDAC dac = new SalesPriceDAC();

            return(dac.GetProdName());
        }
Ejemplo n.º 6
0
        public List <SalesPriceVO> GetSalesPriceYInfo()
        {
            SalesPriceDAC dac = new SalesPriceDAC();

            return(dac.GetSalesPriceYInfo());
        }
Ejemplo n.º 7
0
        public List <SalesPriceVO> GetWhereInfo(string prodName, string companyName)
        {
            SalesPriceDAC dac = new SalesPriceDAC();

            return(dac.GetWhereInfo(prodName, companyName));
        }