protected void Page_Load(object sender, EventArgs e)
 {
     objV = new DAO_Venta();
     objC = new DAO_Cliente();
     if (!Page.IsPostBack)
     {
     }
 }
Exemple #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     obj = new DAO_Venta();
     if (!Page.IsPostBack)
     {
         buildListMarca();
         buildListTipo();
         Session["venta"]       = null;
         Session["ventaBoleta"] = null;
         buildTableVentasPendientes();
     }
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     dmov   = new DAO_Movimientos();
     obj    = new DAO_Venta();
     dcom   = new DAO_Compras();
     cTiMov = new C_TipoMovimiento();
     cMov   = new C_Movimientos();
     if (!IsPostBack)
     {
         buildListMarca();
         buildListTipo();
         buildListMarcan();
         buildListTipon();
         buildListOrdenCompra();
         buildListTipoMovimiento();
     }
 }