public AuthController(IValidator Validator, IDatabase Database, IAuthenticator Auth, IMyPasswordHasher Hasher) { this.Validator = Validator; this.Database = Database; this.Auth = Auth; this.Hasher = Hasher; }
public MyAuth(IDatabase Database, IMyPasswordHasher Hasher) { this.Database = Database; this.Hasher = Hasher; }