示例#1
0
        public void registrarRegistroPDV_Bodega(List <E_Reporte_RegistroPDV> oList_E_Reporte_RegistroPDV)
        {
            D_ReportesColgate_Bodega oD_ReportesColgate_Bodega = new D_ReportesColgate_Bodega();

            try {
                oD_ReportesColgate_Bodega.RegistrarReportesColgate_Bodega(oList_E_Reporte_RegistroPDV);
            }
            catch (Exception ex) {
                log.Error("[BL_Registar_RegistroPDV] [Registrar_RegistroPDV_Failed] :", ex);
            }
        }
示例#2
0
        //Descripcion   : Registrar Nuevos Puntos de Venta Para Colgate Bodega.
        //Fecha         : 04/05/2012 PSA

        public E_Reporte_RegistroPDV_Response Registrar_PuntoDeVenta_Bodega_Mov(E_Reporte_RegistroPDV_Mov oE_Reporte_RegistroPDV_Mov)
        {
            E_Reporte_RegistroPDV_Response oE_Reporte_RegistroPDV_Response = new E_Reporte_RegistroPDV_Response();

            string mensaje = "";
            D_ReportesColgate_Bodega oD_ReportesColgate_Bodega = new D_ReportesColgate_Bodega();

            try {
                oE_Reporte_RegistroPDV_Response.Mensaje = mensaje;
                oE_Reporte_RegistroPDV_Response         = oD_ReportesColgate_Bodega.Registrar_PuntoDeVenta_Bodega_Mov(oE_Reporte_RegistroPDV_Mov);
            }
            catch (Exception ex) {
                log.Error("[Registrar_Registrar_ReportesPDV_Mov] [Registrar_ReportesPDV_Mov_Failed] :", ex);
                mensaje = "Se ha producido un Error, Consultar con el Equipo de TI.";
                oE_Reporte_RegistroPDV_Response.Mensaje = mensaje;
                throw new Exception();
            }
            return(oE_Reporte_RegistroPDV_Response);
        }