private bool InsertStockiest(string stockiestData, string dcrDate, string dcrStatus) { try { string result = string.Empty; bool flag = false; result = _objSP.InsertStockiest(dcrDate, dcrStatus, stockiestData); if (result == "SUCCESS") { flag = true; } return(flag); } catch (Exception ex) { throw ex; } }