public async Task <ActionResult> Index()
        {
            bool allData = true;
            var  model   = await _subscribesService.GetSubscribesIndexViewAsync(CurrentUserId, allData);

            return(Ok(model));
        }