Ejemplo n.º 1
0
 public List <ReportHorasCompleto> BuscaReportHoras(DateTime dtInicial, DateTime dtFinal)
 {
     try
     {
         var context = new Indigo_Controle_Licenca();
         return
             (context.STP_BUSCA_RELATORIO_HORAS_COMPLETO(dtInicial, dtFinal).ToList());
     }
     catch (Exception)
     {
         return(null);
     }
 }