public AllCallRecord GetScorecardRequiredData(SimpleID SI) { AllCallRecord objAllCallRecord = new AllCallRecord(); string ID = SI.ID; return(objAllCallRecord); }
public string DeleteComment(SimpleID simpleID) { string Message = string.Empty; try { Message = objCCInternalLayer.DeleteComment(simpleID); } catch (Exception ex) { throw ex; } return(Message); }
public CompleteScorecard GetScorecardRecordID(SimpleID simpleID) { CompleteScorecard objCompleteScorecard = new CompleteScorecard(); try { objCompleteScorecard = objCCInternalLayer.GetScorecardRecordID(simpleID); } catch (Exception ex) { throw ex; } return(objCompleteScorecard); }
public string CompleteReview(SimpleID simpleID) { string message = ""; try { message = objCCInternalLayer.CompleteReview(simpleID); } catch (Exception ex) { throw ex; } return(message); }
public CompleteScorecard GetScorecardRecordID(SimpleID simpleID) { CompleteScorecard bojCompleteScorecard = new CompleteScorecard(); try { bojCompleteScorecard = objCallCriteriaAPI.GetScorecardRecordID(simpleID); } catch (Exception ex) { throw ex; } return(bojCompleteScorecard); }
public List <CallRecord> GetRecord(SimpleID SI) { List <CallRecord> objCallRecord = new List <CallRecord>(); try { objCallRecord = objCallCriteriaAPI.GetRecord(SI); } catch (Exception ex) { throw ex; } return(objCallRecord); }
public AllCallRecord GetRecordID(SimpleID SI) { AllCallRecord scr = new AllCallRecord(); try { scr = objCallCriteriaAPI.GetRecordID(SI); } catch (Exception ex) { throw ex; } return(scr); }
public string AcceptAsBad(SimpleID SI) { try { int x_id = Convert.ToInt32(SI.ID); string user = HttpContext.Current.User.Identity.Name; objCCInternalLayer.AcceptAsBad(x_id, user); } catch (Exception ex) { throw ex; } return("Updated."); }
public AllCallRecord GetRecordXID(SimpleID SI) { AllCallRecord objAllCallRecord = new AllCallRecord(); try { int ID = Convert.ToInt32(SI.ID); objAllCallRecord = objCCInternalLayer.GetRecordXID(ID); } catch (Exception ex) { throw ex; } return(objAllCallRecord); }
public string AcceptAsBad(SimpleID SI) { string Message = string.Empty; try { int x_id = Convert.ToInt32(SI.ID); string user = HttpContext.Current.User.Identity.Name; Message = objCCInternalLayer.AcceptAsBad(x_id, user); } catch (Exception ex) { throw ex; } return(Message); }
public AllCallRecord GetRecordID(SimpleID SI) { AllCallRecord scr = new AllCallRecord(); try { string ID = SI.ID; string userName = HttpContext.Current.User.Identity.Name; scr = objCCInternalLayer.GetRecordID(ID, userName); } catch (Exception ex) { throw ex; } return(scr); }