public ActionResult ChangePassword(string oldpassword, string newpassword, string accesstoken)
 {
     Business.ApplicationService.AppServiceClient appclient = new Business.ApplicationService.AppServiceClient();
     appclient.ChangePassword(oldpassword, newpassword, Session["usertoken"].ToString());
     return View();
 }
 public ActionResult ChangePassword(string oldpassword, string newpassword, string accesstoken)
 {
     Business.ApplicationService.AppServiceClient appclient = new Business.ApplicationService.AppServiceClient();
     appclient.ChangePassword(oldpassword, newpassword, Session["usertoken"].ToString());
     return(View());
 }