public DataTable SearchCount(aspnet_ExtendedPropertiesEntityFilter EntityFilter)
 {
     try
     {
         return(this.CreateDataAccess().SearchCount(EntityFilter));
     }
     catch (Exception ex)
     {
         Helpers.Logger.Logger.LogExceptionStatic(ex);
         throw ex;
     }
 }
 public void Search(aspnet_ExtendedPropertiesEntityFilter EntityFilter, out aspnet_ExtendedPropertiesEntityInfo.aspnet_ExtendedPropertiesEntityInfoList listaAGenerar)
 {
     try
     {
         listaAGenerar = this.DataTableToListOfEntityInfo(this.CreateDataAccess().Search(EntityFilter));
     }
     catch (Exception ex)
     {
         Helpers.Logger.Logger.LogExceptionStatic(ex);
         throw ex;
     }
 }
 public aspnet_ExtendedPropertiesEntityInfo.aspnet_ExtendedPropertiesEntityInfoList Search(aspnet_ExtendedPropertiesEntityFilter EntityFilter, bool NoUtilizar)
 {
     try
     {
         return(this.DataTableToListOfEntityInfo(this.CreateDataAccess().Search(EntityFilter)));
     }
     catch (Exception ex)
     {
         Helpers.Logger.Logger.LogExceptionStatic(ex);
         throw ex;
     }
 }