public void GetHashableGraficaPuntoMedicionTest()
        {
            HashableDataRepository r = new HashableDataRepository();
            AjaxDictionary<string, object> tipo = new AjaxDictionary<string, object>();

            tipo = r.GetHashableGraficaLumbreras(201405151704);
            tipo = new AjaxDictionary<string, object>(); ;
            //r.GetHashableGraficaPuntoMedicion(1002, 201406111219);
        }
Пример #2
0
 public AjaxDictionary<string, object> Download_GetHashableGraficaLumbreras(long FechaNumerica)
 {
     AjaxDictionary<string, object> tipos = new AjaxDictionary<string, object>();
     try
     {
         HashableDataRepository repository = new HashableDataRepository();
         tipos = repository.GetHashableGraficaLumbreras(FechaNumerica);
     }
     catch (Exception)
     {
         ;
     }
     return tipos;
 }