Esempio n. 1
0
        //
        public OOB.Resultado.Ficha Venta_Temporal_SetNotas(OOB.Venta.Temporal.Cambios.Notas.Ficha ficha)
        {
            var result = new OOB.Resultado.Ficha();

            var fichaDTO = new DtoLibPos.VentaAdm.Temporal.Cambiar.Notas.Ficha()
            {
                id    = ficha.id,
                notas = ficha.notas,
            };
            var r01 = MyData.VentaAdm_Temporal_SetNotas(fichaDTO);

            if (r01.Result == DtoLib.Enumerados.EnumResult.isError)
            {
                result.Mensaje = r01.Mensaje;
                result.Result  = OOB.Resultado.Enumerados.EnumResult.isError;
                return(result);
            }

            return(result);
        }
        //

        public DtoLib.Resultado VentaAdm_Temporal_SetNotas(DtoLibPos.VentaAdm.Temporal.Cambiar.Notas.Ficha ficha)
        {
            return(ServiceProv.VentaAdm_Temporal_SetNotas(ficha));
        }