public JsonResult GuestNotComing(string id)
 {
     _guestManager.MarkGuestAsNotComing(id);
     return(Json(new { success = true }));
 }