예제 #1
0
        public int Delete(tb_goodsCG parameter)
        {
            tb_goodsCGBLL bll = new tb_goodsCGBLL();

            return(bll.Delete(parameter));
        }
예제 #2
0
        public int Post([FromBody] List <tb_goodsCG> parameter)
        {
            tb_goodsCGBLL bll = new tb_goodsCGBLL();

            return(bll.Add(parameter));
        }
예제 #3
0
        public int Put([FromBody] tb_goodsCG parameter)
        {
            tb_goodsCGBLL bll = new tb_goodsCGBLL();

            return(bll.Update(parameter));
        }
예제 #4
0
        public IEnumerable <tb_goodsCG> Get(tb_goodsCG parameter)
        {
            tb_goodsCGBLL bll = new tb_goodsCGBLL();

            return(bll.Find(parameter));
        }