public BP Get(string id) { BPRepo SAPBP = new BPRepo(); BP _bp = SAPBP.getBP(id); return(_bp); }
// GET: api/BP public List <BP> Get() { BPRepo SAPBP = new BPRepo(); return(SAPBP.getBP()); }