public UsuarioController(IUsuarioUseCase usuarioUseCase) { this.usuarioUseCase = usuarioUseCase; }
public UsuarioController(IUsuarioUseCase usuarioUseCase) { useCase = usuarioUseCase ?? throw new ArgumentNullException(nameof(usuarioUseCase)); }
public LoginController(IUsuarioUseCase usuarioUseCase, IConfiguration configuration) { useCase = usuarioUseCase ?? throw new ArgumentNullException(nameof(usuarioUseCase)); config = configuration ?? throw new ArgumentNullException(nameof(configuration)); }
public UsuarioUseCaseTest(IUsuarioUseCase usuarioUseCase, IUsersRepository usersRepository) { this.usuarioUseCase = usuarioUseCase; this.usersRepository = usersRepository; }