Constructor of public
class clients
is public
but it has a parameter of type ACTInterface
that is private
(it is nested in a class?). You can’t do that. You need to make ACTInterface
at least as accessible as clients
.
Constructor of public
class clients
is public
but it has a parameter of type ACTInterface
that is private
(it is nested in a class?). You can’t do that. You need to make ACTInterface
at least as accessible as clients
.