public async Task <HttpResponseMessage> Listar()
 {
     try
     {
         var response = _serviceVaraCompetencia.Listar();
         return(await ResponseAsync(response, _serviceVaraCompetencia));
     }
     catch (Exception ex)
     {
         return(await ResponseExceptionAsync(ex));
     }
 }