Пример #1
0
        //====== ctors

        public ActivityLogger(EFAppContext context)
        {
            this.context = Guard.NotNull(context, nameof(context));
        }
        //====== ctors

        public CredentialsValidator(EFAppContext context, IPasswordHasher passwordHasher)
        {
            this.context        = context;
            this.passwordHasher = passwordHasher;
        }