Ejemplo n.º 1
0
        public IHttpActionResult Get(int id)
        {
            DTO_PRO_LLKH tbl_PRO_LLKH = BS_PRO_LLKH.get_PRO_LLKH(db, id);

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

            return(Ok(tbl_PRO_LLKH));
        }
Ejemplo n.º 2
0
 public IQueryable <DTO_PRO_LLKH> Get()
 {
     return(BS_PRO_LLKH.get_PRO_LLKH(db, QueryStrings));
 }