public ENResult delete(uspGEProductPriceSearch_Result data) { try { using (erpStoreEntities db = new erpStoreEntities()) { db.uspGEProductPriceDelete(data.idProduct, PUser, PReturnCode, PReturnMessage); return(new ENResult(Convert.ToInt32(PReturnCode.Value), Convert.ToString(PReturnMessage.Value))); } } catch (Exception ex) { return(PUnexpectedError(ex)); } }