public string UpdateGDInformationStatusById(int id, int statusId)
        {
            string result = "error";

            try
            {
                lostAndFoundService.UpdateGDInformationStatusById(id, statusId);

                result = "success";

                return(result);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }