private void GetAdjustmentType() { List <LocalAdjustmentType> adjustmentTypes = DCMemoBAL.GetAdjustmentType(); if ((adjustmentTypes != null) && adjustmentTypes.Count > 0) { Response.Write(adjustmentTypes.ToJSON()); } else { Response.Write("No Result"); } }
private void GetCCO() { List <CCO> dcMemos = DCMemoBAL.GetCCO(Request.QueryString); if ((dcMemos != null) && dcMemos.Count > 0) { Response.Write(dcMemos.ToJSON()); } else { Response.Write("No Result"); } }
private void GetFromNotification() { if (Session["AlertID"] != null) { int alertid = int.TryParse(Session["AlertID"].ToString(), out alertid) ? alertid : 0; Session["AlertID"] = null; NotifiedData notifiedData = DCMemoBAL.GetNotifiedData(alertid); Response.Write(notifiedData.ToJSON()); } }
private void GetInvStockForChangeOfUnit() { List <Product> MCProducts = DCMemoBAL.GetInvStockForChangeOfUnit(Request.QueryString); if ((MCProducts != null) && MCProducts.Count > 0) { Response.Write(MCProducts.ToJSON()); } else { Response.Write("No Result"); } }
private void GetGLLocking() { List <clsGLLocking> GLLocking = DCMemoBAL.GetGLLocking(Request.QueryString); if ((GLLocking != null) && GLLocking.Count > 0) { Response.Write(GLLocking.ToJSON()); } else { Response.Write("No Result"); } }
private void GetAAF() { List <AAF> dcAAF = DCMemoBAL.GetAAF(Request.QueryString); if ((dcAAF != null) && dcAAF.Count > 0) { Response.Write(dcAAF.ToJSON()); } else { Response.Write("No Result"); } }
private void ManageDCMemo() { Response.Write(DCMemoBAL.ManageDCMemo(Request.QueryString)); }