public void ListAllJobType()
 {
     try
     {
         using (_jobModel = new JobModel())
         {
             _view.JobTypeList = _jobModel.ListAllJobTypes();
         }
     }
     catch (Exception ex)
     {
         Logger.Write(string.Format("An Error has ocurred while trying to load the job type list.\n{0}\n{1}", ex.Message, ex.StackTrace));
         _view.DisplayMessage("An Internal Error has ocurred while trying to load the job type list.", false);
     }
 }