Esempio n. 1
0
 public void GetAll(string OrdenDeRegistros, out Listado_AlimentosPorEncuestasEntityInfo.Listado_AlimentosPorEncuestasEntityInfoList listaAGenerar)
 {
     try
     {
         listaAGenerar = this.DataTableToListOfEntityInfo(this.CreateDataAccess().GetAll(OrdenDeRegistros));
     }
     catch (Exception ex)
     {
         Helpers.Logger.Logger.LogExceptionStatic(ex);
         throw ex;
     }
 }
Esempio n. 2
0
 public void Search(Listado_AlimentosPorEncuestasEntityFilter EntityFilter, out Listado_AlimentosPorEncuestasEntityInfo.Listado_AlimentosPorEncuestasEntityInfoList listaAGenerar)
 {
     try
     {
         listaAGenerar = this.DataTableToListOfEntityInfo(this.CreateDataAccess().Search(EntityFilter));
     }
     catch (Exception ex)
     {
         Helpers.Logger.Logger.LogExceptionStatic(ex);
         throw ex;
     }
 }