Ejemplo n.º 1
0
        public IHttpActionResult Get(int id)
        {
            DTO_WEB_DanhMuc tbl_WEB_DanhMuc = BS_WEB_DanhMuc.get_WEB_DanhMuc(db, id);

            if (tbl_WEB_DanhMuc == null)
            {
                return(NotFound());
            }

            return(Ok(tbl_WEB_DanhMuc));
        }
Ejemplo n.º 2
0
 public IQueryable <DTO_WEB_DanhMuc> Get()
 {
     return(BS_WEB_DanhMuc.get_WEB_DanhMuc(db, QueryStrings));
 }