コード例 #1
0
        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);
        }
コード例 #2
0
 public Business.ApplicationService.AppServiceJobportalResponse UpdateNotes(string commentid, string subjectid, string subjecttype, string parentid, string objecttype, string Des, int visibility, string prop, string usertoken)
 {
     Business.ApplicationService.AppServiceJobportalResponse response = new Business.ApplicationService.AppServiceJobportalResponse();
     try
     {
         response = appclient.UpdateNotes(Convert.ToInt32(commentid), subjectid, subjecttype, parentid, objecttype, Des, visibility, prop, usertoken);
     }
     catch
     {
     }
     return(response);
 }
コード例 #3
0
 public Business.ApplicationService.AppServiceJobportalResponse AddNotes(string subjectid, string subjecttype, string parentid, string usertoken, string description)
 {
     Business.ApplicationService.AppServiceJobportalResponse response = new Business.ApplicationService.AppServiceJobportalResponse();
     try
     {
         response = appclient.AddNotes(subjectid, subjecttype, parentid, usertoken, description);
     }
     catch
     {
     }
     return(response);
 }
コード例 #4
0
        public Business.ApplicationService.AppServiceJobportalResponse AddNotes(string subjectid, string subjecttype, string parentid, string usertoken, string description)
        {
            Business.ApplicationService.AppServiceJobportalResponse response = new Business.ApplicationService.AppServiceJobportalResponse();
            try
            {
                response = appclient.AddNotes(subjectid, subjecttype, parentid, usertoken, description);
            }
            catch
            {

            }
            return response;
        }
コード例 #5
0
 public Business.ApplicationService.AppServiceJobportalResponse UpdateNotes(string commentid, string subjectid, string subjecttype, string parentid, string objecttype, string Des, int visibility, string prop, string usertoken)
 {
     Business.ApplicationService.AppServiceJobportalResponse response = new Business.ApplicationService.AppServiceJobportalResponse();
     try
     {
         response = appclient.UpdateNotes(Convert.ToInt32(commentid), subjectid, subjecttype, parentid, objecttype, Des, visibility, prop, usertoken);
     }
     catch
     {
     }
     return response;
 }
コード例 #6
0
 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;
 }