// GET: api/Unit/5 public ServerResponse Get(string id) { var res = new ServerResponse(); using (ItemBL itemBL = new ItemBL()) { try { res.Data = itemBL.GetItem(id); } catch (Exception ex) { res.Success = false; } } return(res); }
public static ItemVM GetItem(string itemCode) { return(ItemBL.GetItem(itemCode)); }