public static CodeTask GetCodeTaskById(int id)
 {
     DefaultConnection con = new DefaultConnection();
     return con.CodeTasks.First(w => w.Id == id);
 }
        public async Task<ActionResult> Register(RegisterViewModel model)
        {
            DefaultConnection context = new DefaultConnection();
            if (ModelState.IsValid)
            {
                var user = new ApplicationUser { UserName = model.Email, Email = model.Email };
                var result = await UserManager.CreateAsync(user, model.Password);
                if (result.Succeeded)
                {
                    await SignInManager.SignInAsync(user, isPersistent: false, rememberBrowser: false);

                    // For more information on how to enable account confirmation and password reset please visit http://go.microsoft.com/fwlink/?LinkID=320771
                    // Send an email with this link
                    // string code = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id);
                    // var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
                    // await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>");


                    context.UserDatas.Add(new UserData()
                    {
                        Name = "Имя",
                        Surname = "Фамилия",
                        Email = model.Email,
                        DateOfRegistration = DateTime.Now,
                        Level = 0,
                    });
                    context.SaveChanges();

                    
                    return RedirectToAction("Index", "Home");
                }
                AddErrors(result);
            }

            // If we got this far, something failed, redisplay form
            return View(model);
        }