public async Task <IActionResult> SendTip(Guid Id)
        {
            var apiMsg = await ApiMessage.Wrap(async() =>
            {
                var UserId   = HttpContext.Session.GetString(UserAccountBusiness.UserAccountSessionkey);
                var _userId  = Guid.Parse(UserId);
                var tipEntry = await tipEntryBussiness.GetTipeId(Id);
                await sandBoxBusiness.SendAlertToAll(new SandBoxMessage
                {
                    Content           = tipEntry.Content,
                    CreateTime        = DateTime.Now,
                    FromUserAccountId = _userId,
                    MessageType       = SandBoxMessageType.System
                });
                tipEntry.PublishTime = DateTime.Now;
                await tipEntryBussiness.AddOrUpdate(tipEntry);
            });

            return(Json(apiMsg));
        }