As a result of the refactoring, a helper class has turned out, with a thick constructor, in which a lot of computations take place based on the data obtained from other standard helper classes.
The constructor does not have paramters and their introduction is counterproductive, since the class is instantiated by a framework whose DI cannot pass paramters to the constructor .
Is the constructor "thick" design acceptable?