public VentaCajeroRegistrarViewModel()
 {
     lstVenta = new List<DetalleVenta>();
        LstPagos = new List<VentaPago>();
        lstVentaServicios = new List<DetalleVentaServicio>();
        cliente = new Cliente();
        IGV = 0.18;
        PUNTO = 30;
        subt = 0;
        desc = 0;
        igv_total = 0;
        total = 0;
        montopago = 0;
        ModoPagoSQL mpsql = new ModoPagoSQL();
        LstModosPago = mpsql.BuscarModosPago();
        idTienda = new TiendaSQL().obtenerTienda(Convert.ToInt32(Thread.CurrentPrincipal.Identity.Name));
 }
        public VentaRegistrarViewModel()
        {
            lstVenta = new List<DetalleVenta>();
            lstPagos = new List<VentaPago>();
            lstVentaServicios = new List<DetalleVentaServicio>();

            prod = new Producto();
            IGV = 0.18;
            PUNTO = 30;
            subt = 0;
            desc = 0;
            igv_total = 0;
            montopago = 0;

            TiendaSQL tiendSQL = new TiendaSQL();
            this.idTienda = tiendSQL.obtenerTienda(Int32.Parse(Thread.CurrentPrincipal.Identity.Name));

            ModoPagoSQL mpsql = new ModoPagoSQL();
            LstModosPago = mpsql.BuscarModosPago();
        }