public virtual Abaseguros.Finanzas.SIAC.MessageContracts.ObtieneMensajesReportePosValidacionResponse ObtieneMensajesReportePosValidacion(Abaseguros.Finanzas.SIAC.MessageContracts.ObtieneMensajesReportePosValidacionRequest request)
 {
     return(null);
 }
        public override Abaseguros.Finanzas.SIAC.MessageContracts.ObtieneMensajesReportePosValidacionResponse ObtieneMensajesReportePosValidacion(Abaseguros.Finanzas.SIAC.MessageContracts.ObtieneMensajesReportePosValidacionRequest request)
        {
            MessageContracts.ObtieneMensajesReportePosValidacionResponse objObtieneMensajesReportePosValidacionResponse = new MessageContracts.ObtieneMensajesReportePosValidacionResponse();
            DataContracts.ReportePosValidacionMensajesCollectionDC       objReportePosValidacionMensajesCollectionDC    = new DataContracts.ReportePosValidacionMensajesCollectionDC();
            DataContracts.ReportePosValidacionMensajesDC         objReportePosValidacionMensajesDC = null;
            List <BusinessEntities.MensajesReportePosValidacion> lstMensajesReportePosValidacion   = _objPosValidacionBL.ObtieneMensajesReportePosValidacion(request.BusinessUnit, request.FechaValidacion, request.TipoArchivo, request.TipoValidacion);

            foreach (BusinessEntities.MensajesReportePosValidacion objMensajesReportePosValidacion in lstMensajesReportePosValidacion)
            {
                objReportePosValidacionMensajesDC = new DataContracts.ReportePosValidacionMensajesDC();
                objReportePosValidacionMensajesDC.ReportePosValidacionMensajesId = objMensajesReportePosValidacion.ReportePosValidacionMensajesId;
                objReportePosValidacionMensajesDC.ReportePosValidacionId         = objMensajesReportePosValidacion.ReportePosValidacionId;
                objReportePosValidacionMensajesDC.FechaModificacion = objMensajesReportePosValidacion.FechaModificacion;
                objReportePosValidacionMensajesDC.Estatus           = objMensajesReportePosValidacion.Estatus;
                objReportePosValidacionMensajesDC.Mensaje           = objMensajesReportePosValidacion.Mensaje;
                objReportePosValidacionMensajesDC.OrigenEstatus     = objMensajesReportePosValidacion.OrigenEstatus;

                objReportePosValidacionMensajesCollectionDC.Add(objReportePosValidacionMensajesDC);
            }

            objObtieneMensajesReportePosValidacionResponse.ReportePosValidacionMensajesCollectionDC = objReportePosValidacionMensajesCollectionDC;
            return(objObtieneMensajesReportePosValidacionResponse);
        }