Esempio n. 1
0
        public int Delete(tb_goodsCF parameter)
        {
            tb_goodsCFBLL bll = new tb_goodsCFBLL();

            return(bll.Delete(parameter));
        }
Esempio n. 2
0
        public int Post([FromBody] List <tb_goodsCF> parameter)
        {
            tb_goodsCFBLL bll = new tb_goodsCFBLL();

            return(bll.Add(parameter));
        }
Esempio n. 3
0
        public int Put([FromBody] tb_goodsCF parameter)
        {
            tb_goodsCFBLL bll = new tb_goodsCFBLL();

            return(bll.Update(parameter));
        }
Esempio n. 4
0
        public IEnumerable <tb_goodsCF> Get(tb_goodsCF parameter)
        {
            tb_goodsCFBLL bll = new tb_goodsCFBLL();

            return(bll.Find(parameter));
        }