public string CancelRequest(int id)
        {
            string result = "";

            try
            {
                result = employeeDALObject.CancelRequest(id);
            }
            catch (Exception e)
            {
                throw e;
            }
            return(result);
        }