public AccountController(IAuthentificationService authentificationService, Repository repository) { Repository = repository ?? new Repository(); AuthentificationService = authentificationService ?? new AuthentificationService(Repository); validator = new AccountInputValidator(ModelState); }