internal int CreateWorkRequest(WorkRequest input)
 {
     try { return(dao.AddWorkRequest(input)); }
     catch (Exception ex)
     {
         Error.Log(ex, "Data sent to method was : " + Utility.objectToSql(input));
         throw;
     }
 }