public ActionResult Delete(int groupId, int watchListId)
 {
     _watchListService.DeleteWatchList(groupId, watchListId);
     return(RedirectToAction("Index", new { id = groupId }));
 }