Пример #1
0
 public static VolunteerManager Load(string filename)
 {
     return(new VolunteerManager()
     {
         Workforce = WorkForce.Load(filename)
     });
 }
    static void Main()
    {
        WorkForce staff = new WorkForce();

        foreach (Employee emp in staff)
        {
            emp.Evaluate();
        }
    }
Пример #3
0
        public static VolunteerManager CreateNew(string path)
        {
            VolunteerManager v = new VolunteerManager()
            {
                Workforce = WorkForce.Create(path)
            };

            return(v);
        }
Пример #4
0
        public async Task <IActionResult> OnPostAsync(string returnUrl = null)
        {
            returnUrl      = returnUrl ?? Url.Content("~/");
            ExternalLogins = (await _signInManager.GetExternalAuthenticationSchemesAsync()).ToList();
            if (ModelState.IsValid)
            {
                var user = new WorkForce {
                    UserName = Input.Email, Email = Input.Email
                };
                var result = await _userManager.CreateAsync(user, Input.Password);

                if (result.Succeeded)
                {
                    _logger.LogInformation("User created a new account with password.");

                    var code = await _userManager.GenerateEmailConfirmationTokenAsync(user);

                    code = WebEncoders.Base64UrlEncode(Encoding.UTF8.GetBytes(code));
                    var callbackUrl = Url.Page(
                        "/Account/ConfirmEmail",
                        pageHandler: null,
                        values: new { area = "Identity", userId = user.Id, code = code },
                        protocol: Request.Scheme);

                    await _emailSender.SendEmailAsync(Input.Email, "Confirm your email",
                                                      $"Please confirm your account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");

                    if (_userManager.Options.SignIn.RequireConfirmedAccount)
                    {
                        return(RedirectToPage("RegisterConfirmation", new { email = Input.Email }));
                    }
                    else
                    {
                        await _signInManager.SignInAsync(user, isPersistent : false);

                        return(LocalRedirect(returnUrl));
                    }
                }
                foreach (var error in result.Errors)
                {
                    ModelState.AddModelError(string.Empty, error.Description);
                }
            }

            // If we got this far, something failed, redisplay form
            return(Page());
        }
Пример #5
0
        private static async Task <string> CreateUser(IServiceProvider serviceProvider,
                                                      string testUserPw, string UserName)
        {
            var userManager = serviceProvider.GetService <UserManager <WorkForce> >();

            var user = await userManager.FindByNameAsync(UserName);

            if (user == null)
            {
                user = new WorkForce
                {
                    UserName       = UserName,
                    EmailConfirmed = true
                };
                await userManager.CreateAsync(user, testUserPw);
            }

            if (user == null)
            {
                throw new Exception("The password is probably not strong enough!");
            }

            return(user.Id);
        }
Пример #6
0
 public VolunteerManager(string filename)
 {
     Workforce = WorkForce.Load(filename);
 }