public JsonResult SaveRecipients(FormCollection collection)
        {
            AssignUserInfo();
            RecipientBusiness = Get <QL_NGUOINHAN_VANBANBusiness>();

            JsonResultBO result = new JsonResultBO(true);
            long         id     = collection["ID"].ToLongOrZero();

            QL_NGUOINHAN_VANBAN recipients = RecipientBusiness.Find(id) ?? new QL_NGUOINHAN_VANBAN();

            recipients.TEN_NHOM = collection["TEN_NHOM"];
            bool existed = RecipientBusiness.CheckExistedName(recipients.TEN_NHOM, recipients.ID);

            if (existed)
            {
                result.Status  = false;
                result.Message = "Nhóm đã tồn tại trên hệ thống";
            }

            recipients.NGUOINHAN_IDS  = collection["NGUOINHAN_IDS"];
            recipients.DM_PHONGBAN_ID = currentUser.DM_PHONGBAN_ID.GetValueOrDefault();
            recipients.IS_DEFAULT     = collection["IS_DEFAULT"].ToIntOrZero() > 0;
            RecipientBusiness.Save(recipients);

            result.Message = "Cập nhật nhóm người nhận thành công";
            return(Json(result));
        }