public JsonResult Delete(TodayPatientStatusViewModel model)
        {
            int deleteIndex = 0;

            try
            {
                deleteIndex = TodayStatusManager.Delete(model.Id);
            }
            catch (Exception exception)
            {
                throw new Exception(exception.Message);
            }
            return(deleteIndex > 0 ? Reload() : ErroResult("Failed To save"));
        }