public async Task <IActionResult> CategoryAddPopup(CustomerReminderModel.ConditionModel.AddCategoryConditionModel model)
 {
     if (model.SelectedCategoryIds != null)
     {
         await _customerReminderViewModelService.InsertCategoryConditionModel(model);
     }
     ViewBag.RefreshPage = true;
     return(View(model));
 }