//[ValidateAntiForgeryToken]
        public async Task <List <string> > GetAllImage()
        {
            string       userId      = Request.Query["userId"];
            BlobServices blobService = new BlobServices();

            return(await blobService.GetAllImageFromContainerAsync(userId));
        }
        //[ValidateAntiForgeryToken]
        public async Task <List <string> > GetAllImageSingleUser()
        {
            string       userId      = Request.Query["userId"];
            BlobServices blobService = new BlobServices();

            if (await blobService.getContainerState(userId) == BlobContainerPublicAccessType.Container)
            {
                return(await blobService.GetAllImageFromContainerAsync(userId));
            }
            else
            {
                return(null);
            }
        }