//Ver a Pedro para la implementación... public List <DatosAgenda> ReporteGeneralDetalladoAE(DateTime pFechaI, DateTime pFechaF) { List <DatosAgenda> Result = new List <DatosAgenda>(); DataSet1TableAdapters.TLB_RelacionUserEntidTableAdapter TempTA2 = new DataAccessLayer.DataSet1TableAdapters.TLB_RelacionUserEntidTableAdapter(); DataSet1 TempDS = new DataSet1(); TempTA2.ReporteGeneralDetallado(TempDS.TLB_RelacionUserEntid, pFechaI, pFechaF); foreach (DataSet1.TLB_RelacionUserEntidRow i in TempDS.TLB_RelacionUserEntid) { DatosAgenda temp = new DatosAgenda(); temp.Fecha = i.Fecha; temp.Cod_Entidad = i.Nombre; temp.CodAntSucursal = i.CodAntSucursal; temp.Codi_Entidad = i.Cod_Entidad; temp.CorreoElectronico = i.CorreoElectronico; temp.Direccion = i.Direccion; temp.Fax = i.Fax; temp.SitioWeb = i.SitioWeb; temp.Telefono = i.Telefono; temp.Nombre = i.NombreC; Result.Add(temp); } return(Result); }
private void AgregarNombreaObjetoDatosAgenda(DataAccessLayer.DatosAgenda aDatosAgenda) { aDatosAgenda.Reportero = this.Nombre; }