public async Task <ActionResult <string> > GetByName(string appName, string actorSvcName, string partitionKey, string actorId)
        {
            var service  = RemotingHelper.GetActorServiceHandler(appName, actorSvcName, partitionKey);
            var response = await service.QueryState(actorId);

            return(response);
        }