public string AddNotes(string applicationid, string subjecttype, string parentid, string description)
        {
            string commentid = "";
            string usertoken = Session["usertoken"].ToString();

            Business.ApplicationService.AppServiceClient            bd       = new Business.ApplicationService.AppServiceClient();
            Business.ApplicationService.AppServiceJobportalResponse response = new Business.ApplicationService.AppServiceJobportalResponse();
            response = bd.AddNotes(applicationid, subjecttype, Session["userid"].ToString(), usertoken, description);
            return(commentid);
        }
 public string AddNotes(string applicationid, string subjecttype, string parentid, string description)
 {
     string commentid = "";
     string usertoken = Session["usertoken"].ToString();
     Business.ApplicationService.AppServiceClient bd = new Business.ApplicationService.AppServiceClient();
     Business.ApplicationService.AppServiceJobportalResponse response = new Business.ApplicationService.AppServiceJobportalResponse();
     response = bd.AddNotes(applicationid, subjecttype, Session["userid"].ToString(), usertoken, description);
     return commentid;
 }