public string GetData(int a)
    {
        ValueForB = a * new Random().Next();
        _anotherServiceImplementation.ValueFor = b;
        var processA = new ProcessA(_anotherServiceImplementation);

        return(processA.Run());
    }
    public string GetData()
    {
        var processA = new ProcessA(_anotherServiceImplementation);

        return(processA.Run());
    }