Ejemplo n.º 1
0
        public JsonResult SaveUser(Users User)
        {
            string Key = "M@m06m@m";

            User.Password = EncryptDecrypt.Encrypt(User.Password, Key);
            QuizService.QuizServiceClient Obj = new QuizServiceClient();
            Obj.SaveUser(User);
            return(Json(false));
        }
Ejemplo n.º 2
0
 public MainWindow()
 {
     InitializeComponent();
     client = new QuizServiceClient();
 }