示例#1
0
        public int Delete(tb_goodsMX parameter)
        {
            tb_goodsMXBLL bll = new tb_goodsMXBLL();

            return(bll.Delete(parameter));
        }
示例#2
0
        public int Post([FromBody] List <tb_goodsMX> parameter)
        {
            tb_goodsMXBLL bll = new tb_goodsMXBLL();

            return(bll.Add(parameter));
        }
示例#3
0
        public int Put([FromBody] tb_goodsMX parameter)
        {
            tb_goodsMXBLL bll = new tb_goodsMXBLL();

            return(bll.Update(parameter));
        }
示例#4
0
        public IEnumerable <tb_goodsMX> Get(tb_goodsMX parameter)
        {
            tb_goodsMXBLL bll = new tb_goodsMXBLL();

            return(bll.Find(parameter));
        }